結果

問題 No.253 ロウソクの長さ
ユーザー noriocnorioc
提出日時 2024-10-14 05:01:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 335 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 69,208 KB
平均クエリ数 29.36
最終ジャッジ日時 2024-10-14 05:01:36
合計ジャッジ時間 8,218 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
68,424 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 63 ms
68,056 KB
testcase_06 WA -
testcase_07 AC 60 ms
68,696 KB
testcase_08 AC 61 ms
68,312 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 62 ms
68,824 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 62 ms
68,440 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 61 ms
68,508 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 63 ms
68,568 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 63 ms
68,824 KB
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def ask(x):
    print(f'? {x}')
    resp = int(input())
    return resp


lo = 10
hi = 10 ** 9
cnt = 0
while lo <= hi:
    m = (lo + hi) // 2
    resp = ask(m)
    match resp:
        case -1:
            hi = m - 1
        case 0:
            print(f'! {m+cnt}')
            break
        case 1:
            lo = m + 1

    cnt += 1
0