結果

問題 No.429 CupShuffle
ユーザー matriematrie
提出日時 2021-02-24 23:22:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 518 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 47,284 KB
最終ジャッジ日時 2024-09-25 00:03:30
合計ジャッジ時間 4,309 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,880 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 33 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 37 ms
10,880 KB
testcase_07 AC 33 ms
10,880 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 33 ms
10,880 KB
testcase_10 AC 72 ms
14,208 KB
testcase_11 AC 518 ms
47,152 KB
testcase_12 AC 451 ms
45,836 KB
testcase_13 AC 503 ms
47,284 KB
testcase_14 AC 515 ms
47,212 KB
testcase_15 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k,t=map(int,input().split())
L=[0]*k
for i in range(k):L[i]=input().split()

A=list(range(1,n+1))
for i in range(t-1):
	x,y=int(L[i][0])-1,int(L[i][1])-1
	A[x],A[y]=A[y],A[x]

B=list(map(int,input().split()))
for i in range(k-1,t-1,-1):
	x,y=int(L[i][0])-1,int(L[i][1])-1
	B[x],B[y]=B[y],B[x]

C=[]
for i in range(n):
	if A[i]!=B[i]:C.append(i+1)
print(*C)
0