結果

問題 No.429 CupShuffle
ユーザー convexineqconvexineq
提出日時 2021-02-04 09:15:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 357 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,652 KB
実行使用メモリ 103,048 KB
最終ジャッジ日時 2024-06-30 14:29:18
合計ジャッジ時間 2,557 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
64,652 KB
testcase_01 AC 36 ms
52,412 KB
testcase_02 AC 38 ms
52,768 KB
testcase_03 AC 38 ms
52,392 KB
testcase_04 AC 44 ms
55,756 KB
testcase_05 AC 35 ms
53,636 KB
testcase_06 AC 51 ms
63,996 KB
testcase_07 AC 53 ms
63,984 KB
testcase_08 AC 37 ms
52,088 KB
testcase_09 AC 52 ms
62,108 KB
testcase_10 AC 95 ms
76,680 KB
testcase_11 AC 167 ms
98,316 KB
testcase_12 AC 162 ms
98,980 KB
testcase_13 AC 183 ms
103,048 KB
testcase_14 AC 131 ms
93,072 KB
testcase_15 AC 38 ms
52,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k,x = map(int,input().split())
res = list(range(1,n+1))
for _ in range(x-1):
    a,b = map(int,input().split())
    res[a-1],res[b-1] = res[b-1],res[a-1]
input()
ab = [list(map(int,input().split())) for _ in range(k-x)]
*c, = map(int,input().split())
for a,b in ab[::-1]:
    c[a-1],c[b-1] = c[b-1],c[a-1]
print(*[i+1 for i in range(n) if res[i] != c[i]])
0