結果

問題 No.253 ロウソクの長さ
ユーザー roiti46roiti46
提出日時 2015-09-19 02:22:52
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 349 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 25,604 KB
平均クエリ数 31.83
最終ジャッジ日時 2024-07-16 06:17:07
合計ジャッジ時間 4,153 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
25,208 KB
testcase_01 AC 31 ms
25,232 KB
testcase_02 AC 31 ms
24,964 KB
testcase_03 AC 31 ms
24,592 KB
testcase_04 WA -
testcase_05 AC 31 ms
25,232 KB
testcase_06 AC 32 ms
24,848 KB
testcase_07 AC 31 ms
24,592 KB
testcase_08 AC 32 ms
24,976 KB
testcase_09 WA -
testcase_10 AC 30 ms
25,220 KB
testcase_11 AC 29 ms
24,952 KB
testcase_12 AC 29 ms
25,220 KB
testcase_13 AC 29 ms
24,836 KB
testcase_14 WA -
testcase_15 AC 34 ms
24,580 KB
testcase_16 AC 33 ms
24,836 KB
testcase_17 AC 33 ms
25,604 KB
testcase_18 AC 32 ms
24,964 KB
testcase_19 WA -
testcase_20 AC 31 ms
25,220 KB
testcase_21 AC 32 ms
24,836 KB
testcase_22 WA -
testcase_23 AC 35 ms
24,580 KB
testcase_24 AC 33 ms
24,580 KB
testcase_25 AC 30 ms
24,580 KB
testcase_26 AC 31 ms
25,220 KB
testcase_27 AC 31 ms
25,220 KB
testcase_28 AC 32 ms
25,208 KB
testcase_29 AC 30 ms
25,220 KB
testcase_30 AC 31 ms
25,136 KB
testcase_31 AC 30 ms
25,220 KB
testcase_32 AC 29 ms
24,836 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 29 ms
25,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def puts(s):
    print s
    sys.stdout.flush()

l, r = 10, 10 ** 9
for i in xrange(100):
    x = (l + r) / 2
    
    puts("? %d" % x)
    reply = int(raw_input())
    if reply == 1:
        l = x
    if reply == -1:
        r = x
    if reply == 0:
        puts("! %d" % (x + i))
        break

    l, r = max(0, l - 1), max(0, r - 1)
0