# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
548857 | 2022-04-14T15:13:02 Z | Trisanu_Das | Hotter Colder (IOI10_hottercolder) | C++17 | 10000 ms | 24352 KB |
#include <bits/stdc++.h> #include "grader.h" using namespace std; int HC(int n){ int l = 1, r = n; while(l < r){ int mid = (l + r) / 2; Guess(l); int try_ = Guess(r); if(try_ == 0) return mid; else if(try_ == 1) l++; else r--; } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 148 ms | 1344 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 159 ms | 1284 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 131 ms | 1284 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 10018 ms | 24352 KB | Time limit exceeded |