結果

問題 No.253 ロウソクの長さ
ユーザー 👑 rin204rin204
提出日時 2022-11-02 16:41:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 461 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 70,396 KB
平均クエリ数 35.67
最終ジャッジ日時 2024-07-17 03:13:35
合計ジャッジ時間 4,963 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
68,680 KB
testcase_01 AC 77 ms
70,200 KB
testcase_02 AC 73 ms
70,184 KB
testcase_03 AC 66 ms
69,712 KB
testcase_04 AC 67 ms
70,396 KB
testcase_05 AC 70 ms
69,624 KB
testcase_06 AC 68 ms
69,416 KB
testcase_07 AC 68 ms
68,712 KB
testcase_08 AC 64 ms
69,296 KB
testcase_09 AC 66 ms
68,988 KB
testcase_10 AC 65 ms
70,364 KB
testcase_11 AC 68 ms
69,432 KB
testcase_12 AC 65 ms
69,292 KB
testcase_13 AC 66 ms
68,436 KB
testcase_14 AC 66 ms
69,432 KB
testcase_15 AC 70 ms
69,760 KB
testcase_16 AC 67 ms
69,720 KB
testcase_17 AC 64 ms
68,752 KB
testcase_18 AC 67 ms
69,468 KB
testcase_19 AC 64 ms
69,132 KB
testcase_20 AC 65 ms
68,616 KB
testcase_21 AC 66 ms
68,992 KB
testcase_22 AC 66 ms
69,156 KB
testcase_23 AC 65 ms
69,472 KB
testcase_24 AC 69 ms
69,720 KB
testcase_25 AC 67 ms
69,176 KB
testcase_26 AC 67 ms
69,356 KB
testcase_27 AC 66 ms
69,412 KB
testcase_28 AC 65 ms
69,476 KB
testcase_29 AC 63 ms
69,552 KB
testcase_30 AC 65 ms
69,700 KB
testcase_31 AC 62 ms
69,420 KB
testcase_32 AC 62 ms
69,708 KB
testcase_33 AC 63 ms
70,024 KB
testcase_34 AC 61 ms
69,244 KB
testcase_35 AC 63 ms
68,752 KB
権限があれば一括ダウンロードができます

ソースコード

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("!", l, flush=True)
0