結果

問題 No.339 何人が回答したのか
ユーザー kuuso1kuuso1
提出日時 2016-08-27 15:11:02
言語 F#
(F# 4.0)
結果
AC  
実行時間 352 ms / 1,000 ms
コード長 488 bytes
コンパイル時間 7,205 ms
コンパイル使用メモリ 197,980 KB
実行使用メモリ 34,820 KB
最終ジャッジ日時 2024-11-08 19:19:32
合計ジャッジ時間 31,597 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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