# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
548861 | 2022-04-14T15:19:59 Z | Trisanu_Das | Hotter Colder (IOI10_hottercolder) | C++17 | 10000 ms | 8020 KB |
#include <bits/stdc++.h> #include "grader.h" using namespace std; int HC(int n){ // fk. forgot <= 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 = mid; else r = mid; } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 10063 ms | 1236 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 10071 ms | 1236 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 10036 ms | 1244 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 10086 ms | 8020 KB | Time limit exceeded |