結果

問題 No.246 質問と回答
ユーザー lllllll88938494lllllll88938494
提出日時 2023-05-08 18:11:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 186 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 71,016 KB
平均クエリ数 101.00
最終ジャッジ日時 2024-05-04 02:38:55
合計ジャッジ時間 4,768 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
70,008 KB
testcase_01 AC 83 ms
69,776 KB
testcase_02 AC 89 ms
69,392 KB
testcase_03 AC 90 ms
69,540 KB
testcase_04 AC 87 ms
69,072 KB
testcase_05 AC 86 ms
70,064 KB
testcase_06 AC 84 ms
69,200 KB
testcase_07 AC 87 ms
71,016 KB
testcase_08 AC 86 ms
69,380 KB
testcase_09 AC 90 ms
70,060 KB
testcase_10 AC 85 ms
69,892 KB
testcase_11 AC 84 ms
70,848 KB
testcase_12 AC 84 ms
69,296 KB
testcase_13 AC 85 ms
70,548 KB
testcase_14 AC 100 ms
69,620 KB
testcase_15 AC 94 ms
69,164 KB
testcase_16 AC 96 ms
70,160 KB
testcase_17 AC 83 ms
70,224 KB
testcase_18 AC 84 ms
69,048 KB
testcase_19 AC 84 ms
69,424 KB
testcase_20 AC 83 ms
69,720 KB
testcase_21 AC 82 ms
70,368 KB
testcase_22 AC 85 ms
70,692 KB
testcase_23 AC 82 ms
70,728 KB
testcase_24 AC 82 ms
69,096 KB
testcase_25 AC 85 ms
69,560 KB
testcase_26 AC 86 ms
70,808 KB
testcase_27 AC 88 ms
70,044 KB
testcase_28 AC 89 ms
69,364 KB
testcase_29 AC 84 ms
69,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

print(f'! {ok}')
0