結果
問題 | No.429 CupShuffle |
ユーザー | rocoder |
提出日時 | 2017-08-02 15:58:46 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 505 bytes |
コンパイル時間 | 316 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 17,956 KB |
最終ジャッジ日時 | 2024-10-11 05:55:08 |
合計ジャッジ時間 | 4,565 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
ソースコード
#cup N,K,X=(int(i) for i in input().split()) A=[[i for i in input().split()] for i in range(K)] C=[int(i) for i in input().split()] S=[0]*N for i in range(N): S[i]=i+1 i=0 while i<K and A[i][0]!="?": a1=int(A[i][0])+1 b=int(A[i][1])+1 t=S[a1] S[a1]=S[b] S[b]=t i+=1 i=K-1 while i>=0 and A[i][0]!="?": a1=int(A[i][0])+1 b=int(A[i][1])+1 t=C[a1] C[a1]=C[b] C[b]=t i-=1 i=0 cp="" while i<N and len(cp)<3: if S[i]!=C[i]: cp+=str(i)+" " print(cp)