#include<bits/stdc++.h>
using namespace std;
int Guess(int G);
int HC(int n) {
for(int i = 1; i < n; i++) {
int x = Guess(i + 1);
if(x == -1) {
return i;
}
}
return n;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
56 ms |
1444 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
57 ms |
1460 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
50 ms |
1368 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
10082 ms |
8044 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |