結果

問題 No.253 ロウソクの長さ
ユーザー 👑 rin204rin204
提出日時 2022-11-02 16:39:15
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 462 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 83,244 KB
平均クエリ数 34.28
最終ジャッジ日時 2024-07-17 05:53:10
合計ジャッジ時間 7,130 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 61 ms
70,144 KB
testcase_02 AC 65 ms
69,988 KB
testcase_03 AC 61 ms
69,332 KB
testcase_04 AC 60 ms
69,672 KB
testcase_05 AC 63 ms
70,196 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 60 ms
68,936 KB
testcase_10 RE -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 59 ms
69,952 KB
testcase_15 AC 64 ms
70,520 KB
testcase_16 AC 60 ms
69,540 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 60 ms
69,012 KB
testcase_20 RE -
testcase_21 AC 61 ms
69,764 KB
testcase_22 AC 60 ms
69,608 KB
testcase_23 WA -
testcase_24 AC 63 ms
70,728 KB
testcase_25 RE -
testcase_26 WA -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 WA -
testcase_31 RE -
testcase_32 WA -
testcase_33 RE -
testcase_34 AC 59 ms
70,512 KB
testcase_35 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def ask(x):
    print("?", x, flush=True)
    return int(input())


x = ask(99)
if x == 0:
    print("!", 99, flush=True)
elif x == -1:
    for i in range(1, 100):
        if ask(0) == 0:
            print("!", i, flush=True)
            break
else:
    l = 0
    r = 1 << 30
    t = 1
    while r - l > 1:
        mid = (l + r) // 2
        if ask(mid - t) >= 0:
            r = mid
        else:
            l = mid
        t += 1
    print("!", r, flush=True)
0