Submission #927255

# Submission time Handle Problem Language Result Execution time Memory
927255 2024-02-14T14:27:19 Z vjudge1 Hotter Colder (IOI10_hottercolder) C++11
0 / 100
333 ms 140664 KB
#include <bits/stdc++.h>
using namespace std;

int Guess(int);

int HC(int n) {
    int l = 1, r = n, resL, resR;
    resL = Guess(l);
    while(true) {
        resR = Guess(r);
        if(resR == 1) l++;
        else if(resR == -1) r--;
        else {
            return (r + l) / 2;
        }
    }
}

Compilation message

hottercolder.cpp: In function 'int HC(int)':
hottercolder.cpp:7:23: warning: variable 'resL' set but not used [-Wunused-but-set-variable]
    7 |     int l = 1, r = n, resL, resR;
      |                       ^~~~
# Verdict Execution time Memory Grader output
1 Incorrect 24 ms 23128 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 24 ms 23120 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 24 ms 23096 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 333 ms 140664 KB Output isn't correct - alpha = 0.000000000000
2 Halted 0 ms 0 KB -