| Problem | exponentiate |
|---|---|
| User | haroldpyh |
| Submission Time | 2026-02-10 21:44:30 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
exponentiate.cpp: In function ‘long long int exp(long long int, long long int, long long int)’:
exponentiate.cpp:7:38: error: no matching function for call to ‘exp(long long int&, long long int)’
7 | else if (b % 1) return (exp(a, b - 1) * a) % m;
| ^
In file included from /usr/include/features.h:461,
from /usr/include/x86_64-linux-gnu/c++/9/bits/os_defines.h:39,
from /usr/include/x86_64-linux-gnu/c++/9/bits/c++config.h:528,
from /usr/include/c++/9/cassert:43,
from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:33,
from exponentiate.cpp:1:
/usr/include/x86_64-linux-gnu/bits/mathcalls.h:95:1: note: candidate: ‘double exp(double)’
95 | __MATHCALL_VEC (exp,, (_Mdouble_ __x));
| ^~~~~~~~~~~~~~
/usr/include/x86_64-linux-gnu/bits/mathcalls.h:95:1: note: candidate expects 1 argument, 2 provided
exponentiate