結果

問題 No.246 質問と回答
ユーザー gorugo30gorugo30
提出日時 2021-03-17 23:24:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 197 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,788 KB
実行使用メモリ 70,504 KB
平均クエリ数 30.87
最終ジャッジ日時 2024-07-16 20:27:28
合計ジャッジ時間 4,965 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
69,048 KB
testcase_01 AC 95 ms
68,816 KB
testcase_02 AC 95 ms
69,600 KB
testcase_03 AC 96 ms
68,604 KB
testcase_04 AC 95 ms
69,652 KB
testcase_05 AC 94 ms
70,268 KB
testcase_06 AC 95 ms
68,688 KB
testcase_07 AC 95 ms
70,264 KB
testcase_08 AC 97 ms
69,132 KB
testcase_09 AC 96 ms
69,044 KB
testcase_10 AC 96 ms
68,500 KB
testcase_11 AC 95 ms
69,108 KB
testcase_12 AC 96 ms
68,948 KB
testcase_13 AC 94 ms
69,792 KB
testcase_14 AC 97 ms
69,020 KB
testcase_15 AC 96 ms
69,052 KB
testcase_16 AC 97 ms
69,348 KB
testcase_17 AC 96 ms
69,536 KB
testcase_18 AC 93 ms
69,396 KB
testcase_19 AC 95 ms
69,844 KB
testcase_20 AC 96 ms
69,336 KB
testcase_21 AC 97 ms
70,388 KB
testcase_22 AC 96 ms
70,084 KB
testcase_23 AC 95 ms
68,780 KB
testcase_24 AC 95 ms
69,260 KB
testcase_25 AC 96 ms
70,504 KB
testcase_26 AC 96 ms
69,628 KB
testcase_27 AC 96 ms
69,488 KB
testcase_28 AC 97 ms
69,028 KB
testcase_29 AC 96 ms
68,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

en = 10 ** 9
st = -1
while en - st > 1:
    mid = (en + st) // 2
    print("?", mid, flush = True)
    if int(input()) == 1:
        st = mid
    else:
        en = mid
print("!", st, flush = True)
0