結果
問題 | No.326 あみだますたー |
ユーザー | taba |
提出日時 | 2016-04-14 22:59:49 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 349 bytes |
コンパイル時間 | 36 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 7,552 KB |
最終ジャッジ日時 | 2024-10-04 08:59:56 |
合計ジャッジ時間 | 4,335 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
ソースコード
n=input() k=input() xy=[map(int,raw_input().split())for i in[k]*k] a=map(int,raw_input().split()) b=range(1,n+1) for i in xy: x=i[0]-1 y=i[1]-1 b[x],b[y]=b[y],b[x] #print b t=[] for i in range(n): for j in range(n-1,i,-1): if b[j]==a[i]: b[j],b[j-1]=b[j-1],b[j] t+=[[j,j+1]] print a,b,a==b print len(t) for i in t[::-1]: print i[0],i[1]