結果

問題 No.246 質問と回答
ユーザー ssmkzkssmkzk
提出日時 2018-11-28 09:19:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 397 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,864 KB
平均クエリ数 30.00
最終ジャッジ日時 2024-07-16 16:27:33
合計ジャッジ時間 4,118 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 80 ms
27,352 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 76 ms
26,968 KB
testcase_07 AC 76 ms
27,352 KB
testcase_08 AC 77 ms
27,480 KB
testcase_09 WA -
testcase_10 AC 76 ms
27,480 KB
testcase_11 AC 75 ms
27,608 KB
testcase_12 AC 77 ms
27,224 KB
testcase_13 WA -
testcase_14 AC 73 ms
27,224 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 76 ms
27,224 KB
testcase_18 AC 77 ms
27,224 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 72 ms
27,352 KB
testcase_23 WA -
testcase_24 AC 75 ms
27,224 KB
testcase_25 AC 73 ms
27,096 KB
testcase_26 WA -
testcase_27 AC 75 ms
27,224 KB
testcase_28 AC 75 ms
27,480 KB
testcase_29 AC 73 ms
27,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

max_num = 1000000000
ck_num = max_num // 2
span = max_num // 2

while True:
    print("?",ck_num)
    ans = int(input())
    span = span // 2
    if ans == 1:
        ck_num += span
    else:
        ck_num -= span
    if span == 1:
        break

print("?", ck_num)
ans = int(input())
if ans == 1:
    print("!", ck_num)
    sys.exit()
else:
    print("!", ck_num - 1)
    sys.exit()
0