結果

問題 No.253 ロウソクの長さ
ユーザー lloyzlloyz
提出日時 2023-10-02 00:18:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 425 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 69,600 KB
平均クエリ数 35.58
最終ジャッジ日時 2024-07-26 13:33:15
合計ジャッジ時間 4,971 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
69,320 KB
testcase_01 AC 66 ms
69,600 KB
testcase_02 AC 70 ms
69,368 KB
testcase_03 AC 68 ms
69,336 KB
testcase_04 AC 66 ms
69,080 KB
testcase_05 AC 69 ms
69,336 KB
testcase_06 AC 66 ms
68,944 KB
testcase_07 AC 65 ms
68,184 KB
testcase_08 AC 67 ms
69,208 KB
testcase_09 AC 65 ms
68,824 KB
testcase_10 AC 67 ms
68,952 KB
testcase_11 AC 66 ms
68,952 KB
testcase_12 AC 65 ms
69,080 KB
testcase_13 AC 66 ms
68,696 KB
testcase_14 AC 67 ms
69,208 KB
testcase_15 AC 69 ms
68,824 KB
testcase_16 AC 66 ms
68,824 KB
testcase_17 AC 70 ms
68,312 KB
testcase_18 AC 67 ms
68,952 KB
testcase_19 AC 66 ms
68,568 KB
testcase_20 AC 66 ms
69,208 KB
testcase_21 AC 68 ms
69,592 KB
testcase_22 AC 67 ms
69,336 KB
testcase_23 AC 66 ms
69,244 KB
testcase_24 AC 70 ms
68,824 KB
testcase_25 AC 66 ms
68,696 KB
testcase_26 AC 66 ms
68,856 KB
testcase_27 AC 66 ms
68,824 KB
testcase_28 AC 68 ms
69,208 KB
testcase_29 AC 69 ms
68,952 KB
testcase_30 AC 66 ms
69,336 KB
testcase_31 AC 66 ms
68,696 KB
testcase_32 AC 68 ms
68,816 KB
testcase_33 AC 64 ms
68,184 KB
testcase_34 AC 66 ms
68,312 KB
testcase_35 AC 67 ms
69,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def ask(x):
    print(f"? {x}")
    return int(input())

x = ask(98)
if x == 0:
    ans = 98
elif x == -1:
    for i in range(1, 99):
        if ask(0) == 0:
            ans = i
            break
else:
    l = 0
    r = 10**9 + 1
    t = 1
    while r - l > 1:
        mid = (l + r) // 2
        if ask(max(mid - t, 0)) >= 0:
            l = mid
        else:
            r = mid
        t += 1
    ans = l
print(f"! {ans}")
0