Problem maximum
User Kiameimon
Submission Time 2023-12-25 02:04:31
Score 0
Max Time N/A
Max Memory N/A

Compile Error

maximum.cpp: In function ‘long long int extgcd(long long int, long long int, long long int&, long long int&)’:
maximum.cpp:13:5: error: ‘ll’ was not declared in this scope
13 | ll d = extgcd(b, a%b, y, x);
| ^~
maximum.cpp:14:24: error: ‘d’ was not declared in this scope
14 | return y -= a/b*x, d;
| ^