結果

問題 No.246 質問と回答
ユーザー rlangevinrlangevin
提出日時 2023-01-14 13:52:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 70,540 KB
平均クエリ数 30.90
最終ジャッジ日時 2024-07-16 20:30:26
合計ジャッジ時間 4,562 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
68,824 KB
testcase_01 AC 85 ms
68,568 KB
testcase_02 AC 87 ms
68,440 KB
testcase_03 AC 84 ms
70,480 KB
testcase_04 AC 82 ms
69,316 KB
testcase_05 AC 83 ms
69,676 KB
testcase_06 AC 84 ms
69,152 KB
testcase_07 AC 87 ms
70,220 KB
testcase_08 AC 84 ms
69,860 KB
testcase_09 AC 84 ms
68,992 KB
testcase_10 AC 90 ms
69,060 KB
testcase_11 AC 86 ms
68,808 KB
testcase_12 AC 87 ms
69,432 KB
testcase_13 AC 87 ms
69,048 KB
testcase_14 AC 87 ms
68,856 KB
testcase_15 AC 86 ms
69,368 KB
testcase_16 AC 85 ms
69,432 KB
testcase_17 AC 85 ms
69,036 KB
testcase_18 AC 82 ms
68,916 KB
testcase_19 AC 83 ms
68,592 KB
testcase_20 AC 83 ms
69,304 KB
testcase_21 AC 85 ms
69,700 KB
testcase_22 AC 87 ms
69,836 KB
testcase_23 AC 86 ms
69,900 KB
testcase_24 AC 84 ms
69,860 KB
testcase_25 AC 85 ms
69,448 KB
testcase_26 AC 83 ms
68,888 KB
testcase_27 AC 83 ms
70,264 KB
testcase_28 AC 87 ms
69,540 KB
testcase_29 AC 87 ms
70,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

yes = 1
no = 10 ** 9 + 1
while no - yes != 1:
    mid = (yes + no)//2
    print("? %d" % mid)
    sys.stdout.flush()
    if int(input()):
        yes = mid
    else:
        no = mid
print("! %d" % yes)
sys.stdout.flush()
0