結果

問題 No.339 何人が回答したのか
ユーザー kuuso1kuuso1
提出日時 2016-08-27 15:11:02
言語 F#
(F# 4.0)
結果
AC  
実行時間 345 ms / 1,000 ms
コード長 488 bytes
コンパイル時間 6,691 ms
コンパイル使用メモリ 198,796 KB
実行使用メモリ 34,944 KB
最終ジャッジ日時 2024-04-26 06:24:43
合計ジャッジ時間 30,801 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 345 ms
34,944 KB
testcase_01 AC 344 ms
34,556 KB
testcase_02 AC 337 ms
34,688 KB
testcase_03 AC 338 ms
34,432 KB
testcase_04 AC 341 ms
34,808 KB
testcase_05 AC 341 ms
34,688 KB
testcase_06 AC 340 ms
34,552 KB
testcase_07 AC 339 ms
34,808 KB
testcase_08 AC 343 ms
34,936 KB
testcase_09 AC 339 ms
34,548 KB
testcase_10 AC 342 ms
34,808 KB
testcase_11 AC 338 ms
34,672 KB
testcase_12 AC 337 ms
34,432 KB
testcase_13 AC 338 ms
34,544 KB
testcase_14 AC 339 ms
34,804 KB
testcase_15 AC 342 ms
34,436 KB
testcase_16 AC 339 ms
34,436 KB
testcase_17 AC 343 ms
34,940 KB
testcase_18 AC 342 ms
34,800 KB
testcase_19 AC 338 ms
34,940 KB
testcase_20 AC 339 ms
34,420 KB
testcase_21 AC 343 ms
34,420 KB
testcase_22 AC 341 ms
34,508 KB
testcase_23 AC 340 ms
34,792 KB
testcase_24 AC 340 ms
34,808 KB
testcase_25 AC 342 ms
34,516 KB
testcase_26 AC 340 ms
34,548 KB
testcase_27 AC 338 ms
34,560 KB
testcase_28 AC 337 ms
34,556 KB
testcase_29 AC 344 ms
34,564 KB
testcase_30 AC 341 ms
34,048 KB
testcase_31 AC 339 ms
34,556 KB
testcase_32 AC 341 ms
34,552 KB
testcase_33 AC 339 ms
34,548 KB
testcase_34 AC 338 ms
34,432 KB
testcase_35 AC 339 ms
34,420 KB
testcase_36 AC 340 ms
34,688 KB
testcase_37 AC 345 ms
34,676 KB
testcase_38 AC 340 ms
34,412 KB
testcase_39 AC 338 ms
34,780 KB
testcase_40 AC 342 ms
34,428 KB
testcase_41 AC 338 ms
34,424 KB
testcase_42 AC 338 ms
34,812 KB
testcase_43 AC 343 ms
34,564 KB
testcase_44 AC 340 ms
34,420 KB
testcase_45 AC 342 ms
34,676 KB
testcase_46 AC 342 ms
34,428 KB
testcase_47 AC 341 ms
34,816 KB
testcase_48 AC 340 ms
34,680 KB
testcase_49 AC 339 ms
34,792 KB
testcase_50 AC 338 ms
34,684 KB
testcase_51 AC 344 ms
34,560 KB
testcase_52 AC 345 ms
34,804 KB
testcase_53 AC 339 ms
34,684 KB
testcase_54 AC 341 ms
34,424 KB
testcase_55 AC 338 ms
34,132 KB
testcase_56 AC 339 ms
34,680 KB
testcase_57 AC 343 ms
34,676 KB
testcase_58 AC 337 ms
34,804 KB
testcase_59 AC 339 ms
34,688 KB
testcase_60 AC 340 ms
34,804 KB
testcase_61 AC 340 ms
33,992 KB
testcase_62 AC 339 ms
34,676 KB
testcase_63 AC 343 ms
34,928 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (226 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 #

open System


let ri () = stdin.ReadLine() |> int
let ria () = stdin.ReadLine().Split() |> Array.map int

type Sol() =
    member this.Solve() = 
        let N = ri()
        let mutable ( L : list<int> ) = []
        for i in [1..N] do L <- ( ri () ) :: L
        
        let rec gcd a b = if a = 0 then b else gcd (b%a) a
        
        let g = List.reduce gcd L
        
        L |> List.map (fun x -> x/g ) |> List.sum |> printfn "%d"
        
let mySol = new Sol()
mySol.Solve()
0