# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1074260 | 2024-08-25T09:10:02 Z | beaconmc | Hotter Colder (IOI10_hottercolder) | C++14 | 1612 ms | 33068 KB |
#include "grader.h" #include <bits/stdc++.h> typedef long long ll; #define FOR(i,x,y) for(ll i=x; i<y; i++) #define FORNEG(i,x,y) for(lli = x; i>y; i--) using namespace std; ll n; int guess(ll a){ if (a==0) return -1; if (a==n+1) return -1; return Guess(a); } int solve(int a, int b){ //cout << a << " " << b << endl; if (a==b) return a; ll mid = (a+b)/2; ll midval = guess(mid); ll right = guess(mid+1); if (right == -1){ return solve(a, mid); }else{ return solve(mid+1, b); } } int HC(int N){ n = N; ll ans = solve(1,N); cout << ans << endl; return ans; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 188 ms | 1876 KB | 잘못된 접근입니다. |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 155 ms | 1876 KB | 잘못된 접근입니다. |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 166 ms | 1620 KB | 잘못된 접근입니다. |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1612 ms | 33068 KB | 잘못된 접근입니다. |
2 | Halted | 0 ms | 0 KB | - |