結果

問題 No.1830 Balanced Majority
ユーザー 👑 KazunKazun
提出日時 2022-02-05 09:57:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 941 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 71,296 KB
平均クエリ数 8.19
最終ジャッジ日時 2024-06-11 13:22:56
合計ジャッジ時間 3,309 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
69,336 KB
testcase_01 AC 56 ms
68,952 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 61 ms
68,696 KB
testcase_05 AC 57 ms
68,312 KB
testcase_06 WA -
testcase_07 AC 65 ms
70,592 KB
testcase_08 AC 63 ms
70,496 KB
testcase_09 AC 59 ms
70,112 KB
testcase_10 AC 56 ms
70,368 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 60 ms
70,368 KB
testcase_15 AC 59 ms
70,828 KB
testcase_16 AC 62 ms
70,112 KB
testcase_17 AC 58 ms
69,984 KB
testcase_18 AC 58 ms
69,216 KB
testcase_19 AC 52 ms
69,600 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

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()

def General_Binary_Increase_Search_Integer(L,R,cond,default=None):
    """条件式が単調増加であるとき, 整数上で二部探索を行う.
    L: 解の下限
    R: 解の上限
    cond: 条件(1変数関数, 広義単調増加を満たす)
    default: Lで条件を満たさないときの返り値
    """
    #if not(cond(R)): return default

    #if cond(L): return L

    R+=1
    while R-L>1:
        C=L+(R-L)//2
        if cond(C): R=C
        else: L=C
    return R

def check(x):
    question(x)
    return T[x]*T[N-1]<=0
#==================================================
N=int(input())
T=[None]*(N+1)

question(1); question(N-1)

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

M=General_Binary_Increase_Search_Integer(2,N-1,check)

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