結果

問題 No.253 ロウソクの長さ
ユーザー maspymaspy
提出日時 2020-03-04 11:49:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 1,840 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 27,736 KB
平均クエリ数 29.47
最終ジャッジ日時 2024-07-17 02:35:12
合計ジャッジ時間 4,276 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
27,080 KB
testcase_01 AC 53 ms
27,480 KB
testcase_02 AC 52 ms
27,480 KB
testcase_03 AC 52 ms
27,224 KB
testcase_04 AC 52 ms
27,352 KB
testcase_05 AC 58 ms
27,608 KB
testcase_06 AC 65 ms
27,224 KB
testcase_07 AC 53 ms
27,352 KB
testcase_08 AC 54 ms
27,224 KB
testcase_09 AC 62 ms
27,224 KB
testcase_10 AC 54 ms
27,352 KB
testcase_11 AC 53 ms
27,480 KB
testcase_12 AC 53 ms
27,480 KB
testcase_13 AC 53 ms
27,480 KB
testcase_14 AC 52 ms
26,968 KB
testcase_15 AC 54 ms
27,352 KB
testcase_16 AC 54 ms
27,352 KB
testcase_17 AC 55 ms
27,480 KB
testcase_18 AC 54 ms
27,352 KB
testcase_19 AC 66 ms
27,480 KB
testcase_20 AC 56 ms
26,968 KB
testcase_21 AC 54 ms
27,088 KB
testcase_22 AC 53 ms
27,352 KB
testcase_23 AC 54 ms
27,224 KB
testcase_24 AC 55 ms
27,352 KB
testcase_25 AC 53 ms
27,224 KB
testcase_26 AC 54 ms
27,096 KB
testcase_27 AC 54 ms
27,480 KB
testcase_28 AC 52 ms
27,352 KB
testcase_29 AC 53 ms
27,224 KB
testcase_30 AC 53 ms
27,480 KB
testcase_31 AC 53 ms
27,456 KB
testcase_32 AC 53 ms
27,352 KB
testcase_33 AC 52 ms
27,352 KB
testcase_34 AC 51 ms
27,344 KB
testcase_35 AC 53 ms
27,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# %%
import sys
readline = sys.stdin.readline
# %%
DEBUG = True
DEBUG = False


# %%
class Interactive:
    def __init__(self):
        self.ques_cnt = 0
        self.create_data()

    def create_data(self):
        import random
        self.ans = random.randint(10, 10 ** 9)
        self.x = self.ans + 1
        print('created', self.x)

    def resp_ques(self, *args):
        self.x -= 1
        if self.x < 0:
            self.x = 0
        x = int(args[0])
        if x < self.x:
            return '1\n'
        elif x == self.x:
            return '0\n'
        else:
            return '-1\n'

    def resp_ans(self, *args):
        x = int(args[0])
        if x == self.ans:
            print('AC')
        else:
            print('WA')


if DEBUG:
    interactive = Interactive()


def question(*args, offset='?'):
    if offset is None:
        print(*args, flush=True)
    else:
        print(offset, *args, flush=True)
    if DEBUG:
        resp = interactive.resp_ques(*args)
        print(resp, end='')
        return resp
    else:
        return readline()


def answer(*args, offset='!'):
    if offset is None:
        print(*args, flush=True)
    else:
        print(offset, *args, flush=True)
    if DEBUG:
        interactive.resp_ans(*args)
    else:
        exit()


# %%
def first_strategy():
    resp = int(question(80))
    if resp == 0:
        answer(80)
    if resp == 1:
        return
    k = 1
    while True:
        resp = int(question(5))
        if resp == 0:
            answer(5 + k)
        k += 1


# %%
first_strategy()
k = 0
left = 1
right = 10 ** 9 + 1
while left + 1 < right:
    k += 1
    x = (left + right) // 2
    resp = int(question(x - k))
    if resp == 0:
        answer(x)
        break
    if resp == -1:
        right = x
    if resp == 1:
        left = x
0