Problem specialgirlfriends
User Tqin
Submission Time 2023-12-23 09:36:55
Score 0
Max Time N/A
Max Memory N/A

Compile Error

specialgirlfriends.cpp: In function ‘long double exp(long double, long double)’:
specialgirlfriends.cpp:18:6: error: invalid operands of types ‘long double’ and ‘int’ to binary ‘operator%’
18 | if(b%2==0){
| ~^~
| | |
| | int
| long double
specialgirlfriends.cpp:20:19: error: invalid operands of types ‘long double’ and ‘long double’ to binary ‘operator%’
20 | return (tmp*tmp)%MOD;
| ~~~~~~~~~^~~~
| | |
| | long double
| long double
specialgirlfriends.cpp:23:21: error: invalid operands of types ‘long double’ and ‘long double’ to binary ‘operator%’
23 | return (tmp*tmp*(a%MOD))%MOD;
| ~^~~~
| | |
| | long double
| long double
specialgirlfriends.cpp: In function ‘int main()’:
specialgirlfriends.cpp:3