結果

問題 No.246 質問と回答
ユーザー flippergoflippergo
提出日時 2024-10-13 08:00:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 185 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 70,356 KB
平均クエリ数 30.87
最終ジャッジ日時 2024-10-13 08:00:23
合計ジャッジ時間 5,345 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
68,864 KB
testcase_01 AC 90 ms
69,008 KB
testcase_02 AC 90 ms
70,236 KB
testcase_03 AC 91 ms
69,892 KB
testcase_04 AC 91 ms
69,612 KB
testcase_05 AC 90 ms
69,104 KB
testcase_06 AC 90 ms
69,400 KB
testcase_07 AC 90 ms
69,476 KB
testcase_08 AC 89 ms
68,484 KB
testcase_09 AC 92 ms
69,640 KB
testcase_10 AC 92 ms
69,872 KB
testcase_11 AC 91 ms
68,568 KB
testcase_12 AC 90 ms
68,904 KB
testcase_13 AC 88 ms
69,556 KB
testcase_14 AC 107 ms
70,300 KB
testcase_15 AC 90 ms
69,680 KB
testcase_16 AC 89 ms
69,980 KB
testcase_17 AC 90 ms
69,332 KB
testcase_18 AC 91 ms
69,172 KB
testcase_19 AC 88 ms
69,368 KB
testcase_20 AC 91 ms
68,988 KB
testcase_21 AC 93 ms
69,132 KB
testcase_22 AC 92 ms
69,064 KB
testcase_23 AC 93 ms
70,356 KB
testcase_24 AC 91 ms
69,168 KB
testcase_25 AC 90 ms
68,972 KB
testcase_26 AC 91 ms
68,784 KB
testcase_27 AC 91 ms
69,520 KB
testcase_28 AC 95 ms
68,916 KB
testcase_29 AC 92 ms
70,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

high = 10**9+1
low = 0
while high-low>1:
    mid = (high+low)//2
    print(f"? {mid}")
    a = int(input())
    if a==1:
        low = mid
    else:
        high = mid
print(f"! {low}")
0