結果

問題 No.253 ロウソクの長さ
ユーザー lllllll88938494lllllll88938494
提出日時 2023-05-08 20:03:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 559 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 71,352 KB
平均クエリ数 66.00
最終ジャッジ日時 2024-11-25 09:54:32
合計ジャッジ時間 4,776 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
69,440 KB
testcase_01 AC 66 ms
70,020 KB
testcase_02 AC 66 ms
69,680 KB
testcase_03 AC 71 ms
69,248 KB
testcase_04 AC 68 ms
69,088 KB
testcase_05 AC 64 ms
69,176 KB
testcase_06 AC 65 ms
69,864 KB
testcase_07 AC 66 ms
69,584 KB
testcase_08 AC 66 ms
70,044 KB
testcase_09 AC 62 ms
68,976 KB
testcase_10 AC 67 ms
70,696 KB
testcase_11 AC 65 ms
69,624 KB
testcase_12 AC 66 ms
69,840 KB
testcase_13 AC 67 ms
69,724 KB
testcase_14 AC 62 ms
69,600 KB
testcase_15 AC 61 ms
69,352 KB
testcase_16 AC 61 ms
69,212 KB
testcase_17 AC 68 ms
71,352 KB
testcase_18 AC 68 ms
70,232 KB
testcase_19 AC 60 ms
69,304 KB
testcase_20 AC 67 ms
70,460 KB
testcase_21 AC 63 ms
69,368 KB
testcase_22 AC 61 ms
69,080 KB
testcase_23 AC 66 ms
69,924 KB
testcase_24 AC 61 ms
69,612 KB
testcase_25 AC 65 ms
70,312 KB
testcase_26 AC 66 ms
69,688 KB
testcase_27 AC 74 ms
69,672 KB
testcase_28 AC 66 ms
70,384 KB
testcase_29 AC 65 ms
69,740 KB
testcase_30 AC 66 ms
70,560 KB
testcase_31 AC 68 ms
69,852 KB
testcase_32 AC 64 ms
69,912 KB
testcase_33 AC 66 ms
70,128 KB
testcase_34 AC 59 ms
69,624 KB
testcase_35 AC 66 ms
69,728 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)//2
        print(f'? {mid-i}',flush=True)
        t=int(input())
        if t >= 0:
            ok = mid
        else:
            ng = mid
            
    print(f'! {ok+1}')


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