結果

問題 No.850 企業コンテスト2位
ユーザー tktk_snsntktk_snsn
提出日時 2022-05-17 06:03:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 684 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,480 KB
平均クエリ数 200.11
最終ジャッジ日時 2024-09-14 23:28:22
合計ジャッジ時間 3,806 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
27,480 KB
testcase_01 AC 52 ms
26,840 KB
testcase_02 AC 52 ms
26,968 KB
testcase_03 AC 52 ms
26,712 KB
testcase_04 AC 52 ms
27,352 KB
testcase_05 AC 51 ms
26,712 KB
testcase_06 AC 53 ms
27,224 KB
testcase_07 AC 57 ms
27,352 KB
testcase_08 AC 60 ms
27,480 KB
testcase_09 AC 59 ms
27,480 KB
testcase_10 AC 65 ms
27,352 KB
testcase_11 AC 65 ms
27,096 KB
testcase_12 AC 64 ms
27,216 KB
testcase_13 AC 65 ms
27,352 KB
testcase_14 AC 64 ms
27,352 KB
testcase_15 AC 64 ms
27,224 KB
testcase_16 AC 64 ms
27,352 KB
testcase_17 AC 66 ms
27,224 KB
testcase_18 AC 64 ms
26,968 KB
testcase_19 AC 65 ms
27,216 KB
testcase_20 AC 65 ms
27,352 KB
testcase_21 AC 65 ms
27,352 KB
testcase_22 AC 65 ms
27,480 KB
testcase_23 AC 64 ms
27,352 KB
testcase_24 AC 65 ms
27,096 KB
testcase_25 AC 64 ms
26,848 KB
testcase_26 AC 65 ms
27,096 KB
testcase_27 AC 52 ms
27,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque


def find(P):
    N = len(P)
    win = [[] for _ in range(N)]
    que = deque(list(range(N)))
    while len(que) > 1:
        a = que.popleft()
        b = que.popleft()
        if a > b:
            que.append(a)
            que.appendleft(b)
            continue

        print("? {} {}".format(P[a], P[b]))
        x = int(input())

        if x == P[a]:
            que.append(a)
            win[a].append(b)
        else:
            que.append(b)
            win[b].append(a)

    i = que.pop()
    L = [P[j] for j in win[i]]
    return P[i], L


N = int(input())
X = list(range(1, N + 1))

T1, Y = find(X)
T2, Z = find(Y)
print("! {}".format(T2))
0