結果

問題 No.1830 Balanced Majority
ユーザー KudeKude
提出日時 2022-02-04 21:44:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 495 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 69,344 KB
平均クエリ数 7.54
最終ジャッジ日時 2024-06-11 11:39:09
合計ジャッジ時間 3,086 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
68,184 KB
testcase_01 AC 54 ms
68,608 KB
testcase_02 AC 55 ms
68,952 KB
testcase_03 AC 55 ms
68,184 KB
testcase_04 AC 54 ms
68,952 KB
testcase_05 AC 53 ms
68,696 KB
testcase_06 AC 53 ms
68,440 KB
testcase_07 AC 56 ms
68,704 KB
testcase_08 AC 55 ms
68,320 KB
testcase_09 AC 55 ms
68,320 KB
testcase_10 AC 56 ms
68,448 KB
testcase_11 AC 57 ms
68,960 KB
testcase_12 AC 54 ms
68,064 KB
testcase_13 AC 57 ms
69,344 KB
testcase_14 AC 57 ms
68,824 KB
testcase_15 AC 56 ms
68,704 KB
testcase_16 AC 56 ms
68,704 KB
testcase_17 AC 56 ms
68,192 KB
testcase_18 AC 57 ms
68,832 KB
testcase_19 AC 56 ms
68,320 KB
testcase_20 AC 56 ms
68,064 KB
testcase_21 AC 57 ms
69,216 KB
testcase_22 AC 56 ms
68,448 KB
testcase_23 AC 57 ms
68,736 KB
testcase_24 AC 56 ms
68,832 KB
testcase_25 AC 53 ms
68,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
def ask(x):
    print(f'? {x}')
    r = int(input())
    return r - (x - r)
def answer(l, r):
    print(f'! {l + 1} {r}')
    exit(0)

res0, res1 = ask(1), ask(n - 1)
if res0 == res1:
    answer(1, n - 1)

l, r = 1, n - 1  # (l, r)
while True:
    c = (l + r) // 2
    res = ask(c)
    if res == 0:
        if c <= n // 2:
            answer(c, n)
        else:
            answer(0, c)
    if res > 0 and res0 > 0 or res < 0 and res0 < 0:
        l = c
    else:
        r = c
0