結果

問題 No.253 ロウソクの長さ
ユーザー lllllll88938494lllllll88938494
提出日時 2023-05-08 18:22:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 205 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 71,188 KB
平均クエリ数 101.00
最終ジャッジ日時 2024-05-04 02:42:42
合計ジャッジ時間 4,924 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
70,276 KB
testcase_01 AC 60 ms
70,088 KB
testcase_02 AC 59 ms
70,380 KB
testcase_03 AC 60 ms
70,316 KB
testcase_04 WA -
testcase_05 AC 57 ms
69,576 KB
testcase_06 AC 65 ms
69,816 KB
testcase_07 AC 62 ms
70,036 KB
testcase_08 AC 57 ms
70,064 KB
testcase_09 WA -
testcase_10 AC 63 ms
69,492 KB
testcase_11 AC 60 ms
69,368 KB
testcase_12 AC 60 ms
69,520 KB
testcase_13 AC 63 ms
68,964 KB
testcase_14 WA -
testcase_15 AC 61 ms
69,896 KB
testcase_16 AC 60 ms
69,804 KB
testcase_17 AC 66 ms
70,336 KB
testcase_18 AC 65 ms
71,188 KB
testcase_19 WA -
testcase_20 AC 61 ms
70,424 KB
testcase_21 AC 62 ms
69,184 KB
testcase_22 WA -
testcase_23 AC 60 ms
70,844 KB
testcase_24 AC 58 ms
69,804 KB
testcase_25 AC 62 ms
69,760 KB
testcase_26 AC 58 ms
69,556 KB
testcase_27 AC 58 ms
69,284 KB
testcase_28 AC 58 ms
69,936 KB
testcase_29 AC 60 ms
70,096 KB
testcase_30 AC 58 ms
70,080 KB
testcase_31 AC 58 ms
69,228 KB
testcase_32 AC 64 ms
69,756 KB
testcase_33 AC 62 ms
69,464 KB
testcase_34 WA -
testcase_35 AC 64 ms
70,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

print(f'! {max(ok,10)}')
0