結果

問題 No.253 ロウソクの長さ
ユーザー L-aquaL-aqua
提出日時 2024-10-12 11:35:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 647 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 70,804 KB
平均クエリ数 26.56
最終ジャッジ日時 2024-10-12 11:35:55
合計ジャッジ時間 4,975 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
70,804 KB
testcase_01 AC 61 ms
70,028 KB
testcase_02 AC 64 ms
68,992 KB
testcase_03 AC 59 ms
69,436 KB
testcase_04 AC 60 ms
70,092 KB
testcase_05 AC 61 ms
69,764 KB
testcase_06 AC 61 ms
70,004 KB
testcase_07 AC 60 ms
69,348 KB
testcase_08 AC 60 ms
69,924 KB
testcase_09 AC 59 ms
68,928 KB
testcase_10 AC 60 ms
70,068 KB
testcase_11 AC 60 ms
69,360 KB
testcase_12 AC 60 ms
69,340 KB
testcase_13 AC 59 ms
69,644 KB
testcase_14 AC 59 ms
69,064 KB
testcase_15 AC 63 ms
70,192 KB
testcase_16 AC 61 ms
68,996 KB
testcase_17 AC 61 ms
68,676 KB
testcase_18 AC 61 ms
69,904 KB
testcase_19 AC 60 ms
68,684 KB
testcase_20 AC 61 ms
68,944 KB
testcase_21 AC 61 ms
70,532 KB
testcase_22 AC 61 ms
69,308 KB
testcase_23 AC 62 ms
68,548 KB
testcase_24 AC 61 ms
68,672 KB
testcase_25 AC 62 ms
69,828 KB
testcase_26 AC 62 ms
68,968 KB
testcase_27 AC 61 ms
68,824 KB
testcase_28 AC 61 ms
68,812 KB
testcase_29 AC 61 ms
69,160 KB
testcase_30 AC 60 ms
69,640 KB
testcase_31 AC 60 ms
68,900 KB
testcase_32 AC 61 ms
69,832 KB
testcase_33 AC 61 ms
68,936 KB
testcase_34 AC 59 ms
69,736 KB
testcase_35 AC 61 ms
69,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = 1
print("? 30")
a = int(input())
if a == 0:
    print("! 30")
elif a == -1:
    while True:
        print("? 9")
        a = int(input())
        if a == 0:
            print("! " + str(9+t))
            break
        t += 1
else:
    ok = 30
    ng = 1000000000
    while True:
        mid = (ng+ok)//2
        if mid <= 0:
            ok = 0
            continue
        print("? " + str(mid))
        a = int(input())
        if a == 0:
            print("! " + str(mid+t))
            break
        elif a == 1:
            ok = mid+1
        else:
            ng = mid
        # 短くなる
        ok -= 1
        ng -= 1
        t += 1
0