結果

問題 No.1830 Balanced Majority
ユーザー mink1618033mink1618033
提出日時 2022-02-04 22:27:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 781 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 70,624 KB
平均クエリ数 7.54
最終ジャッジ日時 2024-06-11 12:04:58
合計ジャッジ時間 3,146 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 54 ms
69,080 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 56 ms
70,368 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 53 ms
68,576 KB
testcase_21 AC 62 ms
70,296 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 58 ms
70,112 KB
testcase_25 AC 56 ms
68,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
n = int(input())
li = [-1]*n
now=1
print("? ",now,flush=True)
q = int(input())
cri = q*2-now
li[now-1]=cri
a=cri

now=n-1
print("? ",now,flush=True)
q = int(input())
cri = q*2-now
li[now-1]=cri
b=cri

if a*b>0:
    print("!",1,n-1,flush=True)
    sys.exit()

#a*b<0
l=1
r=n-1
for i in range(18):
    lv=li[l-1]
    rv=li[r-1]

    mid = (l+r)//2
    now=mid
    print("? ",now,flush=True)
    q = int(input())
    cri = q*2-now
    li[now-1]=cri
    if cri==0:
        if mid<=n//2:
            print("!",mid,n,flush=True)
        else:
            print("!",1,mid,flush=True)
        sys.exit()
    elif cri>0:
        if lv>0:
            l=mid
        else:
            r=mid
    else:
        #cri<0
        if lv<0:
            l=mid
        else:
            r=mid
0