結果
問題 | No.14 最小公倍数ソート |
ユーザー | letrangerjp |
提出日時 | 2017-05-20 19:28:20 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 479 bytes |
コンパイル時間 | 540 ms |
コンパイル使用メモリ | 7,296 KB |
実行使用メモリ | 17,792 KB |
最終ジャッジ日時 | 2024-09-19 00:29:58 |
合計ジャッジ時間 | 9,764 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 106 ms
17,792 KB |
testcase_01 | AC | 104 ms
12,416 KB |
testcase_02 | AC | 107 ms
12,288 KB |
testcase_03 | WA | - |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
require "prime" def f(a) pairs = a.map{|n| r = n.prime_division next [1, []] if r.empty? [n, r] } # p pairs r = [] while !pairs.empty? n, f = pairs.shift r << n pairs.sort_by!{|nn, ff| # p [nn, ff] t = f.inject(1){|r, (v, i)| # p [r, v, i] vv, ii = ff.assoc(v) vv ? r * v * [i, ii].min : r } [n * nn / t, nn] } end r end N = gets.to_i A = gets.split.take(N).map(&:to_i) puts f(A) * " "