답안 #365133

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
365133 2021-02-10T23:13:18 Z MilosMilutinovic Hotter Colder (IOI10_hottercolder) C++14
0 / 100
10000 ms 17900 KB
#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