結果

問題 No.246 質問と回答
ユーザー convexineqconvexineq
提出日時 2020-12-31 18:01:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 321 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 69,464 KB
平均クエリ数 30.87
最終ジャッジ日時 2024-07-16 20:26:41
合計ジャッジ時間 5,135 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
68,184 KB
testcase_01 AC 97 ms
68,952 KB
testcase_02 AC 99 ms
68,952 KB
testcase_03 AC 97 ms
68,696 KB
testcase_04 AC 97 ms
68,824 KB
testcase_05 AC 96 ms
69,296 KB
testcase_06 AC 100 ms
68,440 KB
testcase_07 AC 97 ms
68,952 KB
testcase_08 AC 96 ms
68,184 KB
testcase_09 AC 96 ms
69,336 KB
testcase_10 AC 96 ms
69,420 KB
testcase_11 AC 96 ms
68,312 KB
testcase_12 AC 96 ms
68,824 KB
testcase_13 AC 94 ms
69,336 KB
testcase_14 AC 94 ms
69,080 KB
testcase_15 AC 93 ms
68,952 KB
testcase_16 AC 93 ms
69,080 KB
testcase_17 AC 97 ms
69,208 KB
testcase_18 AC 95 ms
68,312 KB
testcase_19 AC 96 ms
69,208 KB
testcase_20 AC 95 ms
69,464 KB
testcase_21 AC 93 ms
69,464 KB
testcase_22 AC 96 ms
68,568 KB
testcase_23 AC 97 ms
68,952 KB
testcase_24 AC 97 ms
69,080 KB
testcase_25 AC 94 ms
68,440 KB
testcase_26 AC 93 ms
68,184 KB
testcase_27 AC 95 ms
68,440 KB
testcase_28 AC 100 ms
68,696 KB
testcase_29 AC 96 ms
68,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

DEBUG = 0
ans = 10

def query(x):
    print(f"? {x}")
    sys.stdout.flush()
    if DEBUG:
        return x <= ans
    else:
        return int(input())

import sys
ok = 0
ng = 10**9+1
while ng-ok > 1:
    mid = (ng+ok)//2
    if query(mid):
        ok = mid
    else:
        ng = mid
print(f"! {ok}")
sys.stdout.flush()
0