Problem | exponentiate_ex |
---|---|
User | Hytoh |
Submission Time | 2023-06-02 20:24:30 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
exponentiate_ex.cpp: In function ‘__int128 pow(long long int, long long int)’:
exponentiate_ex.cpp:11:3: error: ‘__int128t’ was not declared in this scope; did you mean ‘__int128_t’?
11 | __int128t result = pow(a, b/2) % mod;
| ^~~~~~~~~
| __int128_t
exponentiate_ex.cpp:12:3: error: ‘result’ was not declared in this scope
12 | result = (result * result) % mod;
| ^~~~~~
exponentiate_ex.cpp: In function ‘int main()’:
exponentiate_ex.cpp:23:19: error: no match for ‘operator>>’ (operand types are ‘std::basic_istream<char>::__istream_type’ {aka ‘std::basic_istream<char>’} and ‘__int128’)
23 | cin >> a >> b >> mod;
| ~~~~~~~~~~~~~ ^~ ~~~
| | |
| | __int128
| std::basic_istream<char>::__istream_type {aka std::basic_istream<char>}
In file included from /usr/include/c++/9/iostream:40,<