結果

問題 No.246 質問と回答
ユーザー yuki2006yuki2006
提出日時 2015-07-13 11:47:04
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 227 bytes
コンパイル時間 1,676 ms
コンパイル使用メモリ 76,448 KB
実行使用メモリ 92,768 KB
平均クエリ数 30.87
最終ジャッジ日時 2024-07-16 19:36:55
合計ジャッジ時間 7,128 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
92,240 KB
testcase_01 AC 115 ms
92,368 KB
testcase_02 AC 114 ms
92,080 KB
testcase_03 AC 118 ms
92,176 KB
testcase_04 AC 119 ms
91,940 KB
testcase_05 AC 114 ms
92,448 KB
testcase_06 AC 115 ms
91,856 KB
testcase_07 AC 113 ms
91,984 KB
testcase_08 AC 114 ms
91,772 KB
testcase_09 AC 114 ms
92,316 KB
testcase_10 AC 116 ms
92,448 KB
testcase_11 AC 121 ms
91,792 KB
testcase_12 AC 120 ms
91,556 KB
testcase_13 AC 124 ms
92,048 KB
testcase_14 AC 122 ms
92,036 KB
testcase_15 AC 120 ms
91,656 KB
testcase_16 AC 118 ms
91,816 KB
testcase_17 AC 117 ms
92,052 KB
testcase_18 AC 116 ms
92,768 KB
testcase_19 AC 117 ms
91,856 KB
testcase_20 AC 118 ms
91,884 KB
testcase_21 AC 117 ms
92,192 KB
testcase_22 AC 116 ms
92,056 KB
testcase_23 AC 117 ms
91,728 KB
testcase_24 AC 117 ms
92,012 KB
testcase_25 AC 116 ms
92,400 KB
testcase_26 AC 119 ms
92,460 KB
testcase_27 AC 118 ms
92,004 KB
testcase_28 AC 115 ms
92,496 KB
testcase_29 AC 114 ms
91,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

A = 0
B = 10 ** 9 + 1

while B - A > 1:
    c = (A + B) // 2
    print "? %d" % c
    sys.stdout.flush()
    response = int(raw_input())

    if response == 1:
        A = c
    else:
        B = c
print "! %d" % A
0