結果

問題 No.1830 Balanced Majority
ユーザー 👑 KazunKazun
提出日時 2022-02-05 10:05:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 484 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 70,752 KB
平均クエリ数 7.69
最終ジャッジ日時 2024-06-11 13:23:11
合計ジャッジ時間 3,558 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
68,696 KB
testcase_01 AC 57 ms
68,952 KB
testcase_02 AC 53 ms
68,312 KB
testcase_03 AC 57 ms
68,440 KB
testcase_04 AC 61 ms
68,824 KB
testcase_05 AC 61 ms
68,696 KB
testcase_06 AC 61 ms
68,312 KB
testcase_07 AC 63 ms
70,504 KB
testcase_08 AC 64 ms
70,368 KB
testcase_09 AC 60 ms
70,240 KB
testcase_10 AC 59 ms
70,368 KB
testcase_11 AC 59 ms
70,496 KB
testcase_12 AC 59 ms
69,984 KB
testcase_13 AC 59 ms
70,752 KB
testcase_14 AC 60 ms
70,368 KB
testcase_15 AC 61 ms
70,624 KB
testcase_16 AC 59 ms
70,368 KB
testcase_17 AC 61 ms
70,520 KB
testcase_18 AC 57 ms
69,728 KB
testcase_19 AC 55 ms
68,960 KB
testcase_20 AC 55 ms
68,680 KB
testcase_21 AC 60 ms
70,624 KB
testcase_22 AC 60 ms
69,984 KB
testcase_23 AC 59 ms
69,896 KB
testcase_24 AC 63 ms
69,856 KB
testcase_25 AC 61 ms
68,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def question(K):
    print("?",K,flush=True)
    S=int(input())
    T[K]=S-(K-S)

def answer(L,R):
    print("!",L,R,flush=True)
    exit()

#==================================================
N=int(input())
T=[None]*(N+1)

question(1); question(N-1)

if T[1]==T[N-1]:
    answer(2,N-1)

L,R=1,N-1
while True:
    C=(L+R)//2
    question(C)
    if T[C]==0:
        break
    elif T[C]*T[N-1]>0:
        R=C
    else:
        L=C+1

if N//2<=C:
    answer(1,C)
else:
    answer(C+1,N)
0