結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
28,640 KB
testcase_01 AC 104 ms
29,024 KB
testcase_02 AC 101 ms
28,384 KB
testcase_03 AC 102 ms
29,024 KB
testcase_04 AC 101 ms
28,728 KB
testcase_05 AC 99 ms
28,768 KB
testcase_06 AC 98 ms
28,640 KB
testcase_07 AC 102 ms
28,896 KB
testcase_08 AC 106 ms
28,896 KB
testcase_09 AC 99 ms
28,512 KB
testcase_10 AC 107 ms
28,640 KB
testcase_11 AC 99 ms
28,768 KB
testcase_12 AC 100 ms
28,768 KB
testcase_13 AC 99 ms
28,512 KB
testcase_14 AC 102 ms
28,512 KB
testcase_15 AC 102 ms
28,928 KB
testcase_16 AC 98 ms
29,008 KB
testcase_17 AC 101 ms
29,136 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