結果

問題 No.1830 Balanced Majority
ユーザー ShirotsumeShirotsume
提出日時 2023-03-08 01:08:05
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 752 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 83,208 KB
平均クエリ数 8.38
最終ジャッジ日時 2024-09-18 02:21:48
合計ジャッジ時間 3,186 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
70,832 KB
testcase_01 AC 56 ms
70,616 KB
testcase_02 AC 56 ms
71,420 KB
testcase_03 AC 56 ms
69,584 KB
testcase_04 AC 57 ms
70,760 KB
testcase_05 AC 57 ms
72,460 KB
testcase_06 AC 58 ms
70,724 KB
testcase_07 AC 59 ms
70,764 KB
testcase_08 AC 57 ms
71,148 KB
testcase_09 AC 58 ms
69,708 KB
testcase_10 AC 61 ms
70,860 KB
testcase_11 RE -
testcase_12 AC 56 ms
72,784 KB
testcase_13 RE -
testcase_14 AC 56 ms
71,020 KB
testcase_15 AC 57 ms
71,356 KB
testcase_16 AC 58 ms
70,352 KB
testcase_17 AC 58 ms
71,856 KB
testcase_18 AC 56 ms
71,712 KB
testcase_19 AC 57 ms
70,804 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 56 ms
72,036 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
    ok = 1
    for _ in range(20):
        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 == b:
            ng = mid
        else:
            ok = mid

        
0