#include <bits/stdc++.h>
#include "grader.h"
using namespace std;
int HC(int n)
{
if (n == 1) return 1;
Guess(1);
for (int i = 2; i <= n; i++)
{
int g = Guess(i);
if (g == -1) return i-1;
}
return n;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
91 ms |
1272 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
92 ms |
1272 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
92 ms |
1272 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
251 ms |
18844 KB |
Time limit exceeded (wall clock) |