結果

問題 No.253 ロウソクの長さ
ユーザー jitomeskyjitomesky
提出日時 2015-08-01 17:06:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 758 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,864 KB
平均クエリ数 30.31
最終ジャッジ日時 2024-07-16 05:27:37
合計ジャッジ時間 4,871 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
27,496 KB
testcase_01 AC 54 ms
27,480 KB
testcase_02 AC 54 ms
27,480 KB
testcase_03 AC 50 ms
27,608 KB
testcase_04 WA -
testcase_05 AC 51 ms
27,352 KB
testcase_06 AC 51 ms
27,608 KB
testcase_07 AC 50 ms
27,352 KB
testcase_08 AC 49 ms
27,096 KB
testcase_09 WA -
testcase_10 AC 50 ms
27,608 KB
testcase_11 AC 50 ms
27,352 KB
testcase_12 AC 51 ms
27,352 KB
testcase_13 AC 50 ms
27,608 KB
testcase_14 WA -
testcase_15 AC 48 ms
27,224 KB
testcase_16 AC 48 ms
27,608 KB
testcase_17 AC 48 ms
27,096 KB
testcase_18 AC 49 ms
27,608 KB
testcase_19 WA -
testcase_20 AC 49 ms
27,352 KB
testcase_21 AC 51 ms
27,600 KB
testcase_22 WA -
testcase_23 AC 48 ms
27,096 KB
testcase_24 AC 48 ms
27,096 KB
testcase_25 AC 49 ms
26,968 KB
testcase_26 AC 48 ms
27,608 KB
testcase_27 AC 49 ms
27,512 KB
testcase_28 AC 49 ms
27,352 KB
testcase_29 AC 49 ms
27,608 KB
testcase_30 AC 49 ms
27,480 KB
testcase_31 AC 49 ms
27,352 KB
testcase_32 AC 51 ms
27,096 KB
testcase_33 AC 48 ms
26,968 KB
testcase_34 WA -
testcase_35 AC 49 ms
27,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math

def question(num):
    print("? %d" % num)
    sys.stdout.flush()
    n = int(input())
    return n

def result(num):
    print("! %d" % num)
    sys.stdout.flush()

# main
max_num = 1e9
judge = int(max_num / 2)
min_num = 10

for i in range(0,29):
    r = question(judge)
    if r == 1:
        # higer
        min_num = judge
    elif r == -1:
        # low
        max_num = judge
    else:
        result(judge + i)
        sys.exit()
    max_num -= 1
    min_num -= 1
    max_num = max_num if max_num >= 0 else 0
    min_num = min_num if min_num >= 0 else 0
    judge = int((max_num - min_num) / 2) + min_num

judge = min_num

for i in range(29,100):
    r = question(judge)
    if r == 0:
        result(judge + i)
        break
0