結果

問題 No.14 最小公倍数ソート
ユーザー らっしー(raccy)らっしー(raccy)
提出日時 2016-09-25 20:33:19
言語 Crystal
(1.11.2)
結果
AC  
実行時間 2,215 ms / 5,000 ms
コード長 447 bytes
コンパイル時間 11,569 ms
コンパイル使用メモリ 295,564 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-30 19:09:55
合計ジャッジ時間 36,666 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 24 ms
6,940 KB
testcase_04 AC 2,215 ms
6,940 KB
testcase_05 AC 765 ms
6,940 KB
testcase_06 AC 893 ms
6,940 KB
testcase_07 AC 1,150 ms
6,944 KB
testcase_08 AC 1,480 ms
6,940 KB
testcase_09 AC 2,037 ms
6,940 KB
testcase_10 AC 1,987 ms
6,940 KB
testcase_11 AC 2,052 ms
6,940 KB
testcase_12 AC 2,138 ms
6,944 KB
testcase_13 AC 2,168 ms
6,944 KB
testcase_14 AC 2,112 ms
6,944 KB
testcase_15 AC 2,183 ms
6,940 KB
testcase_16 AC 811 ms
6,940 KB
testcase_17 AC 577 ms
6,944 KB
testcase_18 AC 258 ms
6,940 KB
testcase_19 AC 1,354 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = gets.to_s.to_i
list = gets.to_s.split.map {|s|s.to_i}

(n - 2).times do |i|
  c_num = list[i]

  m = i + 1
  m_num = list[m]
  m_lcm = m_num.lcm(c_num)

  ((i + 2)...n).each do |x|
    x_num = list[x]
    x_lcm = x_num.lcm(c_num)
    next unless x_lcm < m_lcm || (x_lcm == m_lcm && x_num < m_num)
    m = x
    m_num = x_num
    m_lcm = x_lcm
  end
  if m != i + 1
    list[i + 1], list[m] = list[m], list[i + 1]
  end
end
puts list.join(' ')
0