結果

問題 No.253 ロウソクの長さ
ユーザー lllllll88938494lllllll88938494
提出日時 2023-05-08 19:55:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 554 bytes
コンパイル時間 518 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 71,272 KB
平均クエリ数 66.00
最終ジャッジ日時 2024-11-25 09:47:55
合計ジャッジ時間 6,974 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
69,872 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 68 ms
69,216 KB
testcase_07 AC 67 ms
69,168 KB
testcase_08 AC 69 ms
70,604 KB
testcase_09 WA -
testcase_10 AC 66 ms
69,552 KB
testcase_11 AC 67 ms
68,816 KB
testcase_12 AC 71 ms
70,204 KB
testcase_13 AC 66 ms
69,756 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 66 ms
69,644 KB
testcase_18 AC 68 ms
69,884 KB
testcase_19 WA -
testcase_20 AC 66 ms
70,648 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 67 ms
69,880 KB
testcase_24 WA -
testcase_25 AC 66 ms
69,812 KB
testcase_26 AC 67 ms
69,424 KB
testcase_27 AC 68 ms
70,156 KB
testcase_28 AC 68 ms
70,600 KB
testcase_29 AC 66 ms
69,180 KB
testcase_30 AC 67 ms
69,124 KB
testcase_31 AC 66 ms
70,472 KB
testcase_32 AC 67 ms
69,104 KB
testcase_33 AC 66 ms
69,436 KB
testcase_34 WA -
testcase_35 AC 68 ms
69,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ok=10
ng=10**9+10

print(f'? {100}',flush=True)
f=int(input())
if f == -1:
    ok = 9
    ng = 100


    for i in range(9):
        mid=(ok+ng)
        print(f'? {mid-i}',flush=True)
        t=int(input())
        if t >= 0:
            ok = mid
        else:
            ng = mid
            
    print(f'! {ok}')


else:

    for  i in range(1,100):
        mid=(ok+ng)//2
        t= max(mid-i,0)
        print(f'? {t}',flush=True)
        t=int(input())
        if t >= 0:
            ok = mid
        else:
            ng = mid

    print(f'! {ok}')
0