結果

問題 No.326 あみだますたー
ユーザー cielciel
提出日時 2015-12-19 05:08:12
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 268 bytes
コンパイル時間 61 ms
コンパイル使用メモリ 7,168 KB
実行使用メモリ 13,184 KB
最終ジャッジ日時 2024-09-16 08:49:30
合計ジャッジ時間 6,592 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,160 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 89 ms
12,160 KB
testcase_06 AC 94 ms
12,416 KB
testcase_07 AC 91 ms
11,904 KB
testcase_08 AC 97 ms
13,056 KB
testcase_09 AC 101 ms
13,184 KB
testcase_10 AC 101 ms
13,184 KB
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 -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#!/usr/bin/ruby
N=gets.to_i
A=[*1..N]
gets.to_i.times{
	a=gets.to_i
	A[a-1],A[a]=A[a],A[a-1]
}
B=gets.split.map(&:to_i)
R=[]
(N-1).downto(1){|i|
	t=B[i]
	1.upto(i){|j|
		if A[j-1]==t
			R<<[j,j+1]
			A[j-1],A[j]=A[j],A[j-1]
		end
	}
}
p R.size
puts R.map{|e|'%d %d'%e}
0