| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 986139 | amirala21 | Guess the number (BOI20_guess) | Cpython 3 | 11 ms | 2904 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
# -*- coding: utf-8 -*-
"""
Created on Sun May 19 23:49:29 2024
@author: amirk
"""
def binary_search(l,n):
mid=int((n+l)/2)
if(l<=n):
print(f'? {mid}')
q=int(input())
if q==-1:
binary_search(mid+1,N )
elif q==1:
binary_search(l, mid-1)
elif q==0:
return "= "+str(mid)
else:
return "Error"
return 'E'
N=int(input())
L=1
print(binary_search(L, N))| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
