結果

問題 No.253 ロウソクの長さ
ユーザー ynyn
提出日時 2016-08-28 03:35:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 573 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 69,336 KB
平均クエリ数 28.44
最終ジャッジ日時 2024-07-17 00:21:58
合計ジャッジ時間 4,919 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
69,088 KB
testcase_01 AC 77 ms
68,440 KB
testcase_02 AC 72 ms
68,688 KB
testcase_03 AC 69 ms
68,696 KB
testcase_04 AC 64 ms
68,608 KB
testcase_05 AC 68 ms
68,568 KB
testcase_06 AC 67 ms
68,696 KB
testcase_07 AC 70 ms
68,824 KB
testcase_08 AC 66 ms
68,440 KB
testcase_09 AC 63 ms
68,312 KB
testcase_10 AC 65 ms
68,744 KB
testcase_11 AC 65 ms
69,080 KB
testcase_12 AC 66 ms
69,080 KB
testcase_13 AC 67 ms
69,336 KB
testcase_14 AC 65 ms
68,312 KB
testcase_15 AC 65 ms
68,824 KB
testcase_16 AC 66 ms
68,856 KB
testcase_17 AC 66 ms
68,696 KB
testcase_18 AC 66 ms
68,696 KB
testcase_19 AC 64 ms
68,184 KB
testcase_20 AC 65 ms
68,312 KB
testcase_21 AC 67 ms
68,952 KB
testcase_22 AC 64 ms
68,696 KB
testcase_23 AC 66 ms
68,568 KB
testcase_24 AC 68 ms
68,824 KB
testcase_25 AC 71 ms
68,056 KB
testcase_26 AC 67 ms
68,952 KB
testcase_27 AC 65 ms
68,568 KB
testcase_28 AC 66 ms
68,568 KB
testcase_29 AC 65 ms
68,312 KB
testcase_30 AC 69 ms
68,824 KB
testcase_31 AC 67 ms
68,568 KB
testcase_32 AC 67 ms
68,568 KB
testcase_33 AC 67 ms
68,568 KB
testcase_34 AC 65 ms
68,056 KB
testcase_35 AC 66 ms
68,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def ask(y):
    print("?", y)
    sys.stdout.flush()
    ret = int(input())
    return ret

def ans(y):
    print("!", y)
    sys.stdout.flush()
    exit()

x = ask(80)
if x == 0:
    ans(80)

elif x == -1:
    for i in range(80):
        if ask(9) == 0:
            ans(9 + i + 1)

else:
    high = 10 ** 9 + 1
    low = 80
    num = 1

    while low < high:
        mid = (low + high) // 2
        x = ask(mid - num)
        if x == 0:
            ans(mid)

        num += 1
        if x == -1:
            high = mid

        else:
            low = mid + 1
0