結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー Nobita GomuNobita Gomu
提出日時 2017-10-02 00:28:02
言語 F#
(F# 4.0)
結果
AC  
実行時間 343 ms / 1,000 ms
コード長 444 bytes
コンパイル時間 6,838 ms
コンパイル使用メモリ 193,396 KB
実行使用メモリ 34,628 KB
最終ジャッジ日時 2024-11-15 21:51:09
合計ジャッジ時間 20,910 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 339 ms
34,624 KB
testcase_01 AC 339 ms
34,368 KB
testcase_02 AC 339 ms
34,620 KB
testcase_03 AC 338 ms
34,364 KB
testcase_04 AC 340 ms
34,472 KB
testcase_05 AC 338 ms
34,368 KB
testcase_06 AC 340 ms
34,476 KB
testcase_07 AC 339 ms
34,604 KB
testcase_08 AC 339 ms
34,604 KB
testcase_09 AC 339 ms
34,244 KB
testcase_10 AC 340 ms
34,368 KB
testcase_11 AC 339 ms
34,236 KB
testcase_12 AC 339 ms
34,336 KB
testcase_13 AC 339 ms
34,608 KB
testcase_14 AC 339 ms
34,240 KB
testcase_15 AC 338 ms
34,376 KB
testcase_16 AC 339 ms
34,244 KB
testcase_17 AC 343 ms
34,500 KB
testcase_18 AC 338 ms
34,476 KB
testcase_19 AC 338 ms
34,236 KB
testcase_20 AC 340 ms
34,496 KB
testcase_21 AC 337 ms
34,600 KB
testcase_22 AC 338 ms
34,468 KB
testcase_23 AC 339 ms
34,244 KB
testcase_24 AC 339 ms
34,624 KB
testcase_25 AC 339 ms
34,628 KB
testcase_26 AC 339 ms
34,368 KB
testcase_27 AC 340 ms
34,240 KB
testcase_28 AC 337 ms
34,372 KB
testcase_29 AC 337 ms
34,340 KB
testcase_30 AC 342 ms
34,620 KB
testcase_31 AC 336 ms
34,624 KB
testcase_32 AC 338 ms
34,620 KB
testcase_33 AC 339 ms
34,492 KB
testcase_34 AC 339 ms
34,372 KB
testcase_35 AC 338 ms
34,620 KB
testcase_36 AC 339 ms
34,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (236 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 #

let rec gcd a b =
    match b with
    | 0L -> a
    | _ -> gcd b (a % b)

let lcm a b = a / (gcd a b) * b

let calc (a,b,c) n =
        n / a + n / b + n / c
        - n / (lcm a b) - n / (lcm b c) - n / (lcm c a)
        + n / (lcm a (lcm b c))

stdin.ReadLine ()
    |> int64
    |> calc (stdin.ReadLine ()
             |> fun s -> s.Split ' '
             |> Array.map int64
             |> fun a -> (a.[0],a.[1],a.[2]))
    |> printfn "%d"
0