結果

問題 No.253 ロウソクの長さ
ユーザー vorg101vorg101
提出日時 2016-05-10 22:28:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 596 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,864 KB
平均クエリ数 27.14
最終ジャッジ日時 2024-07-16 10:07:59
合計ジャッジ時間 3,911 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

low = 10
high = pow(10, 9)
mid = (low + high) // 2
count = 0
print('?', 40)
if int(input()) == -1:
    count += 1
    for i in range(9, 30):
        print('?', i)
        r = int(input())
        if r == 0:
            print('!', i + count)
            break
        count += 1
else:
    count += 1
    while True:
        print('?', mid)
        r = int(input())
        if r == 0:
            print('!', mid + count)
            break
        if r == 1:
            low = mid - 1
        if r == -1:
            high = mid
            low -= 1
        mid = (low + high) // 2
        count += 1
0