結果

問題 No.1830 Balanced Majority
ユーザー ShirotsumeShirotsume
提出日時 2023-03-08 01:15:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 837 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 71,136 KB
平均クエリ数 7.54
最終ジャッジ日時 2024-09-18 02:22:42
合計ジャッジ時間 3,463 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
69,848 KB
testcase_01 AC 62 ms
70,360 KB
testcase_02 AC 64 ms
69,976 KB
testcase_03 AC 64 ms
70,372 KB
testcase_04 AC 66 ms
69,976 KB
testcase_05 AC 64 ms
70,488 KB
testcase_06 AC 65 ms
70,104 KB
testcase_07 AC 65 ms
70,368 KB
testcase_08 AC 64 ms
70,112 KB
testcase_09 AC 65 ms
69,344 KB
testcase_10 AC 65 ms
70,240 KB
testcase_11 AC 67 ms
70,112 KB
testcase_12 AC 65 ms
69,984 KB
testcase_13 AC 65 ms
71,136 KB
testcase_14 AC 66 ms
70,496 KB
testcase_15 AC 67 ms
70,240 KB
testcase_16 AC 66 ms
69,600 KB
testcase_17 AC 65 ms
69,984 KB
testcase_18 AC 64 ms
70,752 KB
testcase_19 AC 64 ms
70,272 KB
testcase_20 AC 64 ms
70,368 KB
testcase_21 AC 67 ms
69,728 KB
testcase_22 AC 66 ms
70,880 KB
testcase_23 AC 68 ms
70,368 KB
testcase_24 AC 68 ms
70,880 KB
testcase_25 AC 63 ms
70,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353

n = ii()

def query(x):
    print('?', x, flush=True)
    p = ii()
    return 2 * p - x
def ans(l, r):
    print('!', l, r, flush=True)

a = query(1)
b = query(n - 1)
if a == b:
    ans(2, n - 1)
else:
    ng = n-1
    ok = 1
    for _ in range(18):
        mid = (ok + ng) // 2
        p = query(mid)
        if p == 0:
            if mid >= n // 2:
                ans(1, mid)
            else:
                ans(mid + 1, n)
            exit()
        elif p // abs(p) == b:
            ng = mid
        else:
            ok = mid
    if ok >= n // 2:
        ans(1, ok)
    else:
        ans(ok + 1, n)

        
0