結果

問題 No.253 ロウソクの長さ
ユーザー lllllll88938494lllllll88938494
提出日時 2023-05-08 18:21:25
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 198 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 83,724 KB
平均クエリ数 78.67
最終ジャッジ日時 2024-05-04 02:42:20
合計ジャッジ時間 6,836 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
69,476 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 59 ms
70,264 KB
testcase_07 AC 58 ms
69,220 KB
testcase_08 AC 60 ms
70,124 KB
testcase_09 RE -
testcase_10 AC 59 ms
69,796 KB
testcase_11 AC 60 ms
69,756 KB
testcase_12 AC 60 ms
69,560 KB
testcase_13 AC 59 ms
69,092 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 59 ms
69,216 KB
testcase_18 AC 58 ms
69,724 KB
testcase_19 RE -
testcase_20 AC 62 ms
69,628 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 61 ms
71,164 KB
testcase_24 RE -
testcase_25 AC 57 ms
69,964 KB
testcase_26 AC 58 ms
69,684 KB
testcase_27 AC 58 ms
69,312 KB
testcase_28 AC 58 ms
69,804 KB
testcase_29 AC 58 ms
70,772 KB
testcase_30 AC 59 ms
70,092 KB
testcase_31 AC 58 ms
70,576 KB
testcase_32 AC 59 ms
69,868 KB
testcase_33 AC 59 ms
69,044 KB
testcase_34 RE -
testcase_35 AC 60 ms
70,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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