結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
70,488 KB
testcase_01 AC 62 ms
70,176 KB
testcase_02 AC 65 ms
69,720 KB
testcase_03 AC 64 ms
69,592 KB
testcase_04 AC 64 ms
70,432 KB
testcase_05 AC 64 ms
70,488 KB
testcase_06 WA -
testcase_07 AC 66 ms
70,496 KB
testcase_08 AC 68 ms
70,656 KB
testcase_09 AC 65 ms
69,728 KB
testcase_10 AC 66 ms
69,984 KB
testcase_11 WA -
testcase_12 AC 65 ms
70,368 KB
testcase_13 WA -
testcase_14 AC 68 ms
69,600 KB
testcase_15 AC 66 ms
69,856 KB
testcase_16 AC 66 ms
70,240 KB
testcase_17 AC 66 ms
70,240 KB
testcase_18 AC 64 ms
70,648 KB
testcase_19 AC 65 ms
70,752 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

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:
            ng = mid
    if ok >= n // 2:
        ans(1, ok)
    else:
        ans(ok + 1, n)

        
0