Submission #754517

# Submission time Handle Problem Language Result Execution time Memory
754517 2023-06-07T23:04:09 Z ValiAntonie Hotter Colder (IOI10_hottercolder) C++14
25 / 100
539 ms 8208 KB
#include "grader.h"
#include<bits/stdc++.h>
using namespace std;
 
int Guess (int x);
 
int HC(int N){
int st=1,dr=N;
Guess(st);
int a = Guess(dr);
while(st!=dr){
	int mij = (st+ dr) >> 1;
	if(a==-1){
    dr= mij;
	Guess(st);
	a = Guess(dr);
	}
	else if(a==1){//close to l
		st = mij + 1;
        Guess(st);
        a = Guess(dr);
	}
	else return mij;
}
return st;
}
# Verdict Execution time Memory Grader output
1 Correct 20 ms 1236 KB Output is correct
# Verdict Execution time Memory Grader output
1 Incorrect 20 ms 1300 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 23 ms 1236 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 539 ms 8208 KB Output isn't correct - alpha = 0.000000000000