Submission #365130

#TimeUsernameProblemLanguageResultExecution timeMemory
365130MilosMilutinovicHotter Colder (IOI10_hottercolder)C++14
0 / 100
718 ms31724 KiB
#include "grader.h"
#include <bits/stdc++.h>

using namespace std;

int Guess(int G);

int HC(int n){
  int bot = 1, top = n;
  while (bot <= top) {
    int mid = bot + top >> 1;
    int x = Guess(bot), y = Guess(top);
    if (y == 0) {
      return mid;
    }
    if (y < 0) {
      top = mid - 1;
    } else {
      bot = mid + 1;
    }
  }
  return bot;
}

Compilation message (stderr)

hottercolder.cpp: In function 'int HC(int)':
hottercolder.cpp:11:19: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
   11 |     int mid = bot + top >> 1;
      |               ~~~~^~~~~
hottercolder.cpp:12:9: warning: unused variable 'x' [-Wunused-variable]
   12 |     int x = Guess(bot), y = Guess(top);
      |         ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...