結果

問題 No.326 あみだますたー
ユーザー TawaraTawara
提出日時 2015-12-19 16:55:45
言語 Python2
(2.7.18)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 261 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 6,672 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2023-08-07 18:27:22
合計ジャッジ時間 2,458 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
5,960 KB
testcase_01 AC 11 ms
6,064 KB
testcase_02 AC 12 ms
6,228 KB
testcase_03 AC 30 ms
6,156 KB
testcase_04 AC 14 ms
6,148 KB
testcase_05 AC 12 ms
6,036 KB
testcase_06 AC 21 ms
5,980 KB
testcase_07 AC 15 ms
5,984 KB
testcase_08 AC 18 ms
6,316 KB
testcase_09 AC 31 ms
6,400 KB
testcase_10 AC 29 ms
6,308 KB
testcase_11 AC 11 ms
6,232 KB
testcase_12 AC 20 ms
6,212 KB
testcase_13 AC 25 ms
6,180 KB
testcase_14 AC 13 ms
6,072 KB
testcase_15 AC 19 ms
5,960 KB
testcase_16 AC 24 ms
5,960 KB
testcase_17 AC 17 ms
6,320 KB
testcase_18 AC 16 ms
6,004 KB
testcase_19 AC 21 ms
6,144 KB
testcase_20 AC 11 ms
6,156 KB
testcase_21 AC 11 ms
5,984 KB
testcase_22 AC 22 ms
6,152 KB
testcase_23 AC 20 ms
6,148 KB
testcase_24 AC 28 ms
6,072 KB
testcase_25 AC 24 ms
6,152 KB
testcase_26 AC 14 ms
6,088 KB
testcase_27 AC 23 ms
6,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

f=lambda:map(int,raw_input().split())
N=input();a=[];I=range(N+1)
for i in xrange(input()):x,y=f();I[x],I[y]=I[y],I[x]
A=[0]+f();i=1
while i<=N:
	p=I.index(A.index(i))
	while i<p:q=p-1;a+=[(q,p)];I[q],I[p]=I[p],I[q];p=q
	i+=1
print len(a)
for x,y in a:print x,y
0