結果

問題 No.14 最小公倍数ソート
ユーザー gigurururugigurururu
提出日時 2014-12-31 13:14:42
言語 Ruby
(3.4.1)
結果
AC  
実行時間 554 ms / 5,000 ms
コード長 377 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 16,128 KB
最終ジャッジ日時 2024-12-26 14:41:24
合計ジャッジ時間 8,362 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
12,160 KB
testcase_01 AC 102 ms
12,160 KB
testcase_02 AC 107 ms
12,160 KB
testcase_03 AC 131 ms
13,568 KB
testcase_04 AC 554 ms
16,000 KB
testcase_05 AC 290 ms
14,848 KB
testcase_06 AC 322 ms
14,976 KB
testcase_07 AC 361 ms
15,232 KB
testcase_08 AC 422 ms
15,744 KB
testcase_09 AC 498 ms
16,128 KB
testcase_10 AC 504 ms
15,872 KB
testcase_11 AC 514 ms
16,000 KB
testcase_12 AC 502 ms
16,000 KB
testcase_13 AC 524 ms
16,128 KB
testcase_14 AC 519 ms
15,872 KB
testcase_15 AC 540 ms
16,128 KB
testcase_16 AC 304 ms
15,360 KB
testcase_17 AC 270 ms
14,976 KB
testcase_18 AC 207 ms
14,208 KB
testcase_19 AC 421 ms
15,872 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require'prime'
N=gets.to_i
a=gets.split.map(&:to_i)
div=Hash.new{|h,x|
  h[x]=x.prime_division.inject([1]){|s,(p,k)|
    s+s.flat_map{|i|(1..k).map{|j|i*p**j}}
  }
}
mul=(0..a.max).map{[]}
a.sort.each{|i|
  div[i].each{|d|
    mul[d] << i
  }
}
puts ([i=a[0]]+(2..N).map{
  i=div[i].map{|d|
    mul[d].delete_at(mul[d].index i)
    (t=mul[d][0])?[t/d,t]:[1e9]
  }.min[1]
})*" "
0