結果

問題 No.14 最小公倍数ソート
ユーザー gigurururugigurururu
提出日時 2014-12-31 13:14:42
言語 Ruby
(3.3.0)
結果
AC  
実行時間 487 ms / 5,000 ms
コード長 377 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 16,256 KB
最終ジャッジ日時 2024-06-08 01:20:10
合計ジャッジ時間 7,787 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
12,160 KB
testcase_01 AC 94 ms
12,288 KB
testcase_02 AC 97 ms
12,416 KB
testcase_03 AC 119 ms
13,568 KB
testcase_04 AC 474 ms
16,256 KB
testcase_05 AC 266 ms
14,848 KB
testcase_06 AC 284 ms
15,104 KB
testcase_07 AC 324 ms
15,616 KB
testcase_08 AC 390 ms
15,744 KB
testcase_09 AC 469 ms
16,000 KB
testcase_10 AC 446 ms
16,000 KB
testcase_11 AC 457 ms
16,128 KB
testcase_12 AC 472 ms
16,128 KB
testcase_13 AC 487 ms
16,128 KB
testcase_14 AC 461 ms
16,128 KB
testcase_15 AC 485 ms
16,128 KB
testcase_16 AC 287 ms
15,488 KB
testcase_17 AC 242 ms
14,976 KB
testcase_18 AC 196 ms
14,336 KB
testcase_19 AC 371 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