結果

問題 No.246 質問と回答
ユーザー tubo28tubo28
提出日時 2015-07-17 22:34:54
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 280 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 25,476 KB
平均クエリ数 30.87
最終ジャッジ日時 2024-07-16 06:52:08
合計ジャッジ時間 3,680 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
25,220 KB
testcase_01 AC 58 ms
24,580 KB
testcase_02 AC 59 ms
24,836 KB
testcase_03 AC 58 ms
25,220 KB
testcase_04 AC 57 ms
25,460 KB
testcase_05 WA -
testcase_06 AC 58 ms
24,964 KB
testcase_07 AC 63 ms
24,964 KB
testcase_08 WA -
testcase_09 AC 61 ms
25,476 KB
testcase_10 AC 61 ms
24,580 KB
testcase_11 AC 58 ms
25,220 KB
testcase_12 AC 64 ms
25,220 KB
testcase_13 AC 60 ms
24,964 KB
testcase_14 AC 59 ms
24,580 KB
testcase_15 WA -
testcase_16 AC 60 ms
24,836 KB
testcase_17 AC 61 ms
24,952 KB
testcase_18 WA -
testcase_19 AC 61 ms
24,580 KB
testcase_20 AC 60 ms
25,220 KB
testcase_21 WA -
testcase_22 AC 59 ms
24,580 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 60 ms
25,220 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 57 ms
24,580 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

res = 1
l = 0
r = 1000000000+1
while l+1 < r:
    m = (l+r)/2
    print ("? %d" % m)
    sys.stdout.flush()
    res = int(input())
    if res == 1:
        l = m
    else:
        r = m
if res==1:
    print("! %d" % res)
else:
    print("! %d" % l)
sys.stdout.flush()
0