結果

問題 No.246 質問と回答
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-08-20 13:23:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 218 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 27,512 KB
平均クエリ数 30.30
最終ジャッジ日時 2024-07-17 06:00:32
合計ジャッジ時間 4,465 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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("!", r)
sys.stdout.flush()
0