結果

問題 No.397 NO MORE KADOMATSU
ユーザー miraxialmiraxial
提出日時 2016-07-15 23:24:33
言語 Ruby
(3.3.0)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 283 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 29,152 KB
平均クエリ数 36.83
最終ジャッジ日時 2024-07-17 00:07:49
合計ジャッジ時間 3,550 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
28,640 KB
testcase_01 AC 107 ms
28,640 KB
testcase_02 AC 114 ms
28,896 KB
testcase_03 AC 110 ms
28,640 KB
testcase_04 AC 110 ms
28,640 KB
testcase_05 AC 111 ms
29,152 KB
testcase_06 AC 111 ms
28,640 KB
testcase_07 AC 112 ms
28,800 KB
testcase_08 AC 112 ms
28,512 KB
testcase_09 AC 109 ms
28,640 KB
testcase_10 AC 113 ms
28,544 KB
testcase_11 AC 108 ms
28,640 KB
testcase_12 AC 110 ms
28,640 KB
testcase_13 AC 113 ms
28,512 KB
testcase_14 AC 109 ms
29,024 KB
testcase_15 AC 111 ms
28,384 KB
testcase_16 AC 111 ms
28,880 KB
testcase_17 AC 114 ms
28,752 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n=gets.to_i
a=gets.split.map &:to_i
b=a.sort
c=0
d=[]
while a!=b do
  n.times do |i|
    if a[i]!=b[i]
      g=a[i..-1].index(b[i])+i
      d<< [i,g]
      gg=a[i]
      a[i]=a[g]
      a[g]=gg
      c+=1
      break
    end
  end
end
p c
d.each do |e|
  print e[0]," ",e[1],"\n"
end
0