結果

問題 No.850 企業コンテスト2位
ユーザー 👑 rin204rin204
提出日時 2022-11-02 23:12:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 749 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 78,204 KB
平均クエリ数 200.46
最終ジャッジ日時 2024-07-17 11:08:02
合計ジャッジ時間 4,081 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
69,624 KB
testcase_01 AC 60 ms
69,804 KB
testcase_02 AC 61 ms
69,052 KB
testcase_03 AC 59 ms
70,272 KB
testcase_04 AC 58 ms
69,252 KB
testcase_05 AC 58 ms
69,076 KB
testcase_06 AC 58 ms
69,072 KB
testcase_07 AC 67 ms
70,476 KB
testcase_08 AC 71 ms
70,568 KB
testcase_09 AC 70 ms
71,676 KB
testcase_10 AC 82 ms
78,080 KB
testcase_11 AC 81 ms
77,192 KB
testcase_12 AC 82 ms
77,116 KB
testcase_13 AC 82 ms
77,192 KB
testcase_14 AC 81 ms
77,520 KB
testcase_15 AC 80 ms
78,204 KB
testcase_16 AC 80 ms
77,864 KB
testcase_17 AC 82 ms
77,524 KB
testcase_18 AC 80 ms
76,988 KB
testcase_19 AC 81 ms
78,076 KB
testcase_20 AC 82 ms
77,336 KB
testcase_21 AC 82 ms
77,368 KB
testcase_22 AC 81 ms
77,520 KB
testcase_23 AC 82 ms
77,652 KB
testcase_24 AC 81 ms
77,176 KB
testcase_25 AC 84 ms
77,124 KB
testcase_26 AC 82 ms
77,700 KB
testcase_27 AC 58 ms
70,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def ask(x, y):
    print("?", x + 1, y + 1, flush=True)
    return int(input()) - 1

def judge(x):
    print("!", x + 1)
    exit()

n = int(input())
A = [i for i in range(n)]
vs = [-1] * n
while len(A) >= 2:
    B = []
    while len(A) >= 2:
        x = A.pop()
        y = A.pop()
        z = ask(x, y)
        B.append(z)
        if x == z:
            vs[y] = x
        else:
            vs[x] = y
            
    A += B

x = A[0]
A = []
for i in range(n):
    if vs[i] == x:
        A.append(i)

while len(A) >= 2:
    B = []
    while len(A) >= 2:
        x = A.pop()
        y = A.pop()
        z = ask(x, y)
        B.append(z)
        if x == z:
            vs[y] = x
        else:
            vs[x] = y
            
    A += B
judge(A[0])
0