Problem summit
User YongXin
Submission Time 2023-06-11 23:05:14
Score 0
Max Time N/A
Max Memory N/A

Compile Error

summit.cpp: In function ‘long long int n(long long int, long long int, long long int, int)’:
summit.cpp:4:2: error: ‘k’ was not declared in this scope
4 | k=(a+b)/2+1;
| ^
summit.cpp:6:6: error: ‘x’ was not declared in this scope
6 | if (x(k,d)<m) return n(k,b,m,d);
| ^
summit.cpp:7:6: error: ‘x’ was not declared in this scope
7 | if (x(k,d)>m) return n(a,k,m,d);
| ^
summit.cpp:8:10: error: expected ‘;’ before ‘}’ token
8 | return k
| ^
| ;
9 | }
| ~
summit.cpp: In function ‘int main()’:
summit.cpp:24:18: error: expected ‘;’ before ‘}’ token
24 | cout<<n(0,m,m,d)
| ^
| ;
25 | }
| ~