結果

問題 No.246 質問と回答
ユーザー dangodango
提出日時 2023-07-02 21:38:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 185 bytes
コンパイル時間 707 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 70,720 KB
平均クエリ数 31.00
最終ジャッジ日時 2024-07-16 17:19:08
合計ジャッジ時間 4,914 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
70,400 KB
testcase_01 AC 84 ms
69,380 KB
testcase_02 AC 85 ms
68,588 KB
testcase_03 AC 88 ms
69,160 KB
testcase_04 AC 85 ms
69,424 KB
testcase_05 AC 87 ms
69,556 KB
testcase_06 AC 85 ms
69,600 KB
testcase_07 AC 84 ms
68,636 KB
testcase_08 AC 88 ms
70,352 KB
testcase_09 AC 85 ms
69,504 KB
testcase_10 AC 85 ms
69,464 KB
testcase_11 AC 85 ms
69,804 KB
testcase_12 AC 85 ms
68,940 KB
testcase_13 AC 86 ms
68,796 KB
testcase_14 AC 83 ms
69,548 KB
testcase_15 AC 85 ms
68,844 KB
testcase_16 AC 88 ms
69,448 KB
testcase_17 AC 86 ms
69,356 KB
testcase_18 AC 85 ms
69,632 KB
testcase_19 AC 84 ms
69,488 KB
testcase_20 AC 86 ms
68,616 KB
testcase_21 AC 86 ms
69,408 KB
testcase_22 AC 84 ms
69,440 KB
testcase_23 AC 95 ms
70,024 KB
testcase_24 AC 89 ms
70,524 KB
testcase_25 AC 83 ms
68,972 KB
testcase_26 AC 84 ms
70,720 KB
testcase_27 AC 83 ms
70,112 KB
testcase_28 AC 82 ms
69,456 KB
testcase_29 AC 83 ms
68,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x, y = 10 ** 9, 1
for i in range(30):
    print("?", (x + y) // 2, flush=True)
    if int(input()):
        y = (x + y) // 2
    else:
        x = (x + y) // 2
print("!", y, flush=True)
0