結果

問題 No.1830 Balanced Majority
ユーザー ikomaikoma
提出日時 2022-02-04 23:12:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 571 bytes
コンパイル時間 434 ms
コンパイル使用メモリ 81,988 KB
実行使用メモリ 70,704 KB
平均クエリ数 7.54
最終ジャッジ日時 2024-06-11 12:45:10
合計ジャッジ時間 3,597 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
69,688 KB
testcase_01 AC 51 ms
69,308 KB
testcase_02 AC 53 ms
69,980 KB
testcase_03 AC 52 ms
70,032 KB
testcase_04 AC 56 ms
69,884 KB
testcase_05 AC 54 ms
69,472 KB
testcase_06 AC 53 ms
69,292 KB
testcase_07 AC 55 ms
69,616 KB
testcase_08 AC 53 ms
70,704 KB
testcase_09 AC 55 ms
68,564 KB
testcase_10 AC 57 ms
69,548 KB
testcase_11 AC 61 ms
69,288 KB
testcase_12 AC 59 ms
68,164 KB
testcase_13 AC 62 ms
70,340 KB
testcase_14 AC 54 ms
70,336 KB
testcase_15 AC 54 ms
69,748 KB
testcase_16 AC 56 ms
69,892 KB
testcase_17 AC 55 ms
69,052 KB
testcase_18 AC 53 ms
69,760 KB
testcase_19 AC 65 ms
69,408 KB
testcase_20 AC 54 ms
68,424 KB
testcase_21 AC 55 ms
69,748 KB
testcase_22 AC 54 ms
69,508 KB
testcase_23 AC 54 ms
69,256 KB
testcase_24 AC 64 ms
69,016 KB
testcase_25 AC 51 ms
69,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

def request(k):
    print(f"? {k}", flush=True)
    return int(input())*2-k
sign = lambda x:(1 if x>0 else (0 if x==0 else -1))

ans1 = request(1)
ansnm1 = request(N-1)
if ans1==ansnm1:
    print(f"! 2 {N-1}", flush=True)
    exit()


l,r = 1,N-1
la,ra = ans1,ansnm1
while l+1<r:
    m = (l+r)//2
    ans = request(m)
    if ans==0:
        l=m
        break
    if sign(ans)*sign(la) < 0:
        r = m
        ra = ans
    else:
        l = m
        la = ans
if l <= N//2:
    print(f"! {l+1} {N}", flush=True)
else:
    print(f"! {1} {l}", flush=True)
0