結果

問題 No.14 最小公倍数ソート
ユーザー pocaristpocarist
提出日時 2015-10-06 13:28:19
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 874 bytes
コンパイル時間 13,108 ms
コンパイル使用メモリ 196,632 KB
実行使用メモリ 54,272 KB
最終ジャッジ日時 2024-07-20 01:43:20
合計ジャッジ時間 16,957 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
31,488 KB
testcase_01 AC 78 ms
31,328 KB
testcase_02 AC 76 ms
31,096 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (605 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

// http://yukicoder.me/problems/37
open System
open System.Collections.Generic

let dpfn fmt = Printf.kprintf Diagnostics.Debug.WriteLine fmt

let factors n =
    let i = ref 2
    let tmp = ref n
    seq {
        while !i * !i <= n do
            if !tmp % !i = 0 then
                tmp := !tmp / !i
                yield !i
            else
                incr i
        if !tmp <> 1 then yield !tmp
    }

[<EntryPoint>]
let main argv = 
    let N = Console.ReadLine().Trim() |> int
    let A = Console.ReadLine().Trim().Split([|' '|]) |> Array.map int
    let A' = Array.init (N-1) (fun i -> A.[i+1])
    A'
    |> Array.map (fun a -> factors a|>List.ofSeq, a)
    |> Array.sort
    |> Array.map snd
    |> List.ofArray
    |> fun a' -> A.[0] :: a'
    |> List.map string
    |> String.concat " "
    |> printfn "%s"
    0 // 整数の終了コードを返します
0