#include "grader.h"
#include <bits/stdc++.h>
using namespace std;
int Guess(int G);
int HC(int n){
int ans = 0;
for (int i = 1; i <= n; i++) {
if (Guess(i) == 0) {
ans = i;
}
}
return ans;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
191 ms |
17900 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
194 ms |
17900 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
205 ms |
17900 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
10091 ms |
8196 KB |
Time limit exceeded |