| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1232137 | jasonic | Hotter Colder (IOI10_hottercolder) | C++20 | 420 ms | 8240 KiB |
#include <bits/stdc++.h>
using namespace std;
#include "grader.h"
int HC(int n){
int l = 1, r = n;
while(l < r) {
Guess(l);
int x = Guess(r);
if(x == 0) return (l+r)/2;
else if (x == 1) l = r - (r-l+1)/2 + 1;
else r = l + (r-l+1)/2 - 1;
}
return l;
}| # | 결과 | 실행 시간 | 메모리 | 채점기 출력 |
|---|---|---|---|---|
| 결과를 불러오는 중입니다… | ||||
| # | 결과 | 실행 시간 | 메모리 | 채점기 출력 |
|---|---|---|---|---|
| 결과를 불러오는 중입니다… | ||||
| # | 결과 | 실행 시간 | 메모리 | 채점기 출력 |
|---|---|---|---|---|
| 결과를 불러오는 중입니다… | ||||
| # | 결과 | 실행 시간 | 메모리 | 채점기 출력 |
|---|---|---|---|---|
| 결과를 불러오는 중입니다… | ||||
