結果

問題 No.246 質問と回答
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-08-20 13:22:11
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 218 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,480 KB
平均クエリ数 30.30
最終ジャッジ日時 2024-07-17 05:59:26
合計ジャッジ時間 4,429 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
27,224 KB
testcase_01 AC 85 ms
27,224 KB
testcase_02 WA -
testcase_03 AC 84 ms
27,352 KB
testcase_04 AC 85 ms
27,352 KB
testcase_05 AC 85 ms
26,840 KB
testcase_06 AC 85 ms
27,224 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 86 ms
27,480 KB
testcase_10 AC 86 ms
27,096 KB
testcase_11 AC 83 ms
27,224 KB
testcase_12 AC 84 ms
27,096 KB
testcase_13 AC 84 ms
27,480 KB
testcase_14 AC 86 ms
26,968 KB
testcase_15 AC 84 ms
27,352 KB
testcase_16 AC 84 ms
27,096 KB
testcase_17 WA -
testcase_18 AC 84 ms
27,352 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 84 ms
26,840 KB
testcase_22 AC 84 ms
27,352 KB
testcase_23 AC 84 ms
26,968 KB
testcase_24 AC 85 ms
27,096 KB
testcase_25 AC 84 ms
27,224 KB
testcase_26 AC 86 ms
27,096 KB
testcase_27 AC 83 ms
27,096 KB
testcase_28 AC 85 ms
26,840 KB
testcase_29 AC 85 ms
27,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
l, r = 1, 10 ** 9
while r - l > 1:
    m = (l + r) // 2
    print("?", m)
    sys.stdout.flush()
    n = int(input())
    if n == 1:
        l = m
    else:
        r = m - 1
print("!", l)
sys.stdout.flush()
0