이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
import math
import sys
def binary_search_guessing_game():
upperBoundary = int(input("input"))
sys.stdout.flush()
lowerBoundary = 1
finalGuess = None
for _ in range(50):
guess = math.floor((upperBoundary + lowerBoundary) / 2)
print(f"? {guess}")
sys.stdout.flush()
response = int(input())
if response == 0:
finalGuess = guess
break
elif response == 1:
upperBoundary = guess - 1
elif response == -1:
lowerBoundary = guess + 1
if finalGuess is not None:
print(f"= {finalGuess}")
sys.stdout.flush()
binary_search_guessing_game()
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |