結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー Nobita GomuNobita Gomu
提出日時 2017-10-02 00:28:02
言語 F#
(F# 4.0)
結果
AC  
実行時間 325 ms / 1,000 ms
コード長 444 bytes
コンパイル時間 9,782 ms
コンパイル使用メモリ 193,684 KB
実行使用メモリ 34,628 KB
最終ジャッジ日時 2024-04-27 17:38:54
合計ジャッジ時間 20,776 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 289 ms
34,364 KB
testcase_01 AC 292 ms
34,492 KB
testcase_02 AC 295 ms
34,252 KB
testcase_03 AC 292 ms
34,368 KB
testcase_04 AC 303 ms
34,364 KB
testcase_05 AC 288 ms
34,628 KB
testcase_06 AC 288 ms
34,368 KB
testcase_07 AC 293 ms
34,208 KB
testcase_08 AC 301 ms
34,620 KB
testcase_09 AC 288 ms
34,464 KB
testcase_10 AC 291 ms
34,488 KB
testcase_11 AC 301 ms
34,628 KB
testcase_12 AC 291 ms
34,624 KB
testcase_13 AC 308 ms
34,500 KB
testcase_14 AC 301 ms
34,372 KB
testcase_15 AC 314 ms
34,236 KB
testcase_16 AC 324 ms
34,468 KB
testcase_17 AC 304 ms
34,628 KB
testcase_18 AC 295 ms
34,372 KB
testcase_19 AC 288 ms
34,600 KB
testcase_20 AC 298 ms
34,496 KB
testcase_21 AC 295 ms
34,248 KB
testcase_22 AC 292 ms
33,840 KB
testcase_23 AC 290 ms
34,372 KB
testcase_24 AC 290 ms
34,468 KB
testcase_25 AC 296 ms
34,240 KB
testcase_26 AC 304 ms
34,372 KB
testcase_27 AC 319 ms
34,372 KB
testcase_28 AC 290 ms
34,500 KB
testcase_29 AC 291 ms
34,372 KB
testcase_30 AC 291 ms
34,492 KB
testcase_31 AC 291 ms
34,372 KB
testcase_32 AC 314 ms
34,624 KB
testcase_33 AC 325 ms
34,628 KB
testcase_34 AC 311 ms
34,612 KB
testcase_35 AC 306 ms
34,616 KB
testcase_36 AC 295 ms
34,368 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (267 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