結果

問題 No.253 ロウソクの長さ
ユーザー 👑 rin204rin204
提出日時 2022-11-02 16:40:19
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 461 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 81,712 KB
実行使用メモリ 83,592 KB
平均クエリ数 34.28
最終ジャッジ日時 2024-07-17 05:54:23
合計ジャッジ時間 7,190 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 66 ms
69,724 KB
testcase_02 AC 64 ms
69,224 KB
testcase_03 AC 63 ms
69,048 KB
testcase_04 AC 61 ms
69,044 KB
testcase_05 AC 62 ms
69,380 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 62 ms
70,180 KB
testcase_10 RE -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 59 ms
69,160 KB
testcase_15 AC 64 ms
69,784 KB
testcase_16 AC 61 ms
69,760 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 59 ms
69,880 KB
testcase_20 RE -
testcase_21 AC 62 ms
69,220 KB
testcase_22 AC 61 ms
69,156 KB
testcase_23 WA -
testcase_24 AC 63 ms
70,100 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 62 ms
68,584 KB
testcase_35 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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


x = ask(98)
if x == 0:
    print("!", 98, flush=True)
elif x == -1:
    for i in range(1, 99):
        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