結果

問題 No.253 ロウソクの長さ
ユーザー 👑 rin204rin204
提出日時 2022-11-02 16:41:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 461 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,608 KB
実行使用メモリ 70,996 KB
平均クエリ数 35.67
最終ジャッジ日時 2024-07-17 05:55:57
合計ジャッジ時間 6,900 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 60 ms
69,588 KB
testcase_02 AC 64 ms
70,360 KB
testcase_03 AC 60 ms
68,808 KB
testcase_04 AC 60 ms
70,208 KB
testcase_05 AC 63 ms
69,892 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 62 ms
69,600 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 60 ms
69,548 KB
testcase_15 AC 64 ms
70,540 KB
testcase_16 AC 60 ms
69,344 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 59 ms
69,616 KB
testcase_20 WA -
testcase_21 AC 62 ms
68,808 KB
testcase_22 AC 61 ms
69,096 KB
testcase_23 WA -
testcase_24 AC 63 ms
70,468 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 59 ms
69,344 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

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:
            l = mid
        else:
            r = mid
        t += 1
    print("!", r, flush=True)
0