結果

問題 No.246 質問と回答
ユーザー yansi819yansi819
提出日時 2024-05-23 09:38:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 70,908 KB
平均クエリ数 30.90
最終ジャッジ日時 2024-05-23 09:38:55
合計ジャッジ時間 5,015 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
69,868 KB
testcase_01 AC 82 ms
69,152 KB
testcase_02 AC 85 ms
68,664 KB
testcase_03 AC 82 ms
69,088 KB
testcase_04 AC 83 ms
69,480 KB
testcase_05 AC 97 ms
70,680 KB
testcase_06 AC 85 ms
69,140 KB
testcase_07 AC 84 ms
70,248 KB
testcase_08 AC 84 ms
69,864 KB
testcase_09 AC 82 ms
70,012 KB
testcase_10 AC 83 ms
68,908 KB
testcase_11 AC 86 ms
68,916 KB
testcase_12 AC 86 ms
68,828 KB
testcase_13 AC 88 ms
69,156 KB
testcase_14 AC 83 ms
70,576 KB
testcase_15 AC 96 ms
69,772 KB
testcase_16 AC 85 ms
68,856 KB
testcase_17 AC 81 ms
69,892 KB
testcase_18 AC 84 ms
70,272 KB
testcase_19 AC 83 ms
70,324 KB
testcase_20 AC 82 ms
68,432 KB
testcase_21 AC 83 ms
69,592 KB
testcase_22 AC 83 ms
69,348 KB
testcase_23 AC 84 ms
69,228 KB
testcase_24 AC 84 ms
69,472 KB
testcase_25 AC 83 ms
69,324 KB
testcase_26 AC 81 ms
69,948 KB
testcase_27 AC 84 ms
69,664 KB
testcase_28 AC 94 ms
69,456 KB
testcase_29 AC 81 ms
70,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

left, right = 1, 10 ** 9 + 1
while abs(right - left) > 1:
    mid = (left + right) // 2
    print("?", mid, flush=True)
    flag = int(input())
    if flag:
        left = mid
    else:
        right = mid
print("!", left)
0