結果

問題 No.246 質問と回答
ユーザー 👑 KazunKazun
提出日時 2020-05-31 17:08:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 248 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 70,772 KB
平均クエリ数 30.90
最終ジャッジ日時 2024-07-16 20:25:04
合計ジャッジ時間 4,435 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
70,108 KB
testcase_01 AC 85 ms
70,340 KB
testcase_02 AC 87 ms
69,776 KB
testcase_03 AC 86 ms
69,684 KB
testcase_04 AC 85 ms
69,724 KB
testcase_05 AC 84 ms
69,352 KB
testcase_06 AC 85 ms
69,292 KB
testcase_07 AC 89 ms
70,772 KB
testcase_08 AC 86 ms
70,028 KB
testcase_09 AC 84 ms
69,088 KB
testcase_10 AC 84 ms
68,592 KB
testcase_11 AC 83 ms
70,448 KB
testcase_12 AC 83 ms
69,412 KB
testcase_13 AC 83 ms
69,812 KB
testcase_14 AC 83 ms
69,676 KB
testcase_15 AC 83 ms
69,112 KB
testcase_16 AC 87 ms
68,960 KB
testcase_17 AC 87 ms
70,080 KB
testcase_18 AC 89 ms
69,532 KB
testcase_19 AC 85 ms
69,416 KB
testcase_20 AC 87 ms
70,076 KB
testcase_21 AC 85 ms
68,476 KB
testcase_22 AC 84 ms
70,280 KB
testcase_23 AC 88 ms
69,364 KB
testcase_24 AC 85 ms
69,240 KB
testcase_25 AC 85 ms
70,164 KB
testcase_26 AC 88 ms
69,844 KB
testcase_27 AC 86 ms
69,128 KB
testcase_28 AC 86 ms
69,108 KB
testcase_29 AC 84 ms
69,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def m(L,U):
    return (L+U+1)//2

L=1
U=10**9

while L!=U:
    M=m(L,U)
    print("? {} [{},{}]".format(M,L,U))
    sys.stdout.flush()

    r=int(input())
    if r==1:
        L=M
    else:
        U=M-1

print("! {}".format(L))
exit()
0