# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1074505 | 2024-08-25T10:51:27 Z | DeathIsAwe | Hotter Colder (IOI10_hottercolder) | C++17 | 440 ms | 8016 KB |
#include "grader.h" #include <iostream> #include <vector> using namespace std; int ans = -1; void destroy(int top, int bottom, int previous) { if (top - bottom == 0) { ans = top; return; } else if (top - bottom == 1) { int sussy; if (previous == -1) { Guess(top); sussy = Guess(bottom); } else if (previous == top) { sussy = Guess(bottom); } else { sussy = -Guess(top); } if (sussy == 1) { ans = bottom; } else { ans = top; } return; } int mid = (top + bottom) / 2; int midleft = (bottom + mid) / 2; int midright = (mid + 1 + top) / 2; if (previous == -1) { int midleftans = Guess(midleft), midrightans = Guess(midright); if (midrightans == 0) { ans = (midleft + midright) / 2; } else if (midrightans == 1) { destroy(top, mid + 1, -1); } else { destroy(mid, bottom, -1); } } } int HC(int n){ destroy(n, 1, -1); return ans; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 24 ms | 1368 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 15 ms | 1432 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 20 ms | 4700 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 440 ms | 8016 KB | Output isn't correct - alpha = 0.000000000000 |
2 | Halted | 0 ms | 0 KB | - |