Submission #1074550

# Submission time Handle Problem Language Result Execution time Memory
1074550 2024-08-25T11:06:00 Z clementine Hotter Colder (IOI10_hottercolder) C++17
0 / 100
445 ms 137588 KB
#include "grader.h"
#include <bits/stdc++.h>
using namespace std;

int HC(int N){
   int l = 1;
   int r = N;
   bool changed = 0;
   int b , a;
   while(l != r)
   {
      int mid = (l + r) / 2;
      if(changed == 1)
      {
         b = Guess(r);
        a = Guess(l);
      }
      else
      {
         a = Guess(l);
         b = Guess(r);
      }
      
      //cout << a << " " << b << " " <<l << " " <<r << '\n';
      if(a == 0 && b==0)
      {
         //cout <<  mid << "ignore rest \n";
         return mid;
         break;
      }
      else if(b ==1)
      {
         l = mid + 1;
         changed = 0;
      }
      else
      {
         r = mid;
         changed = 1;
      }
   }
  //cout << l;
  return l;


}
# Verdict Execution time Memory Grader output
1 Incorrect 26 ms 15188 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 34 ms 15188 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 27 ms 15196 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 445 ms 137588 KB Output isn't correct - alpha = 0.000000000000
2 Halted 0 ms 0 KB -