結果

問題 No.9002 FizzBuzz(テスト用)
ユーザー ichibanshiboriichibanshibori
提出日時 2017-02-12 23:51:58
言語 F#
(F# 4.0)
結果
AC  
実行時間 102 ms / 5,000 ms
コード長 415 bytes
コンパイル時間 7,906 ms
コンパイル使用メモリ 190,844 KB
実行使用メモリ 32,256 KB
最終ジャッジ日時 2024-06-09 10:09:34
合計ジャッジ時間 8,925 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
32,128 KB
testcase_01 AC 97 ms
32,256 KB
testcase_02 AC 102 ms
32,000 KB
testcase_03 AC 101 ms
32,256 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 #

let () =
    let n = stdin.ReadLine() |> int

    seq {1..n}
    |> Seq.map (fun i ->
        async {
            return
                match i % 3 = 0, i % 5 = 0 with
                | true, false -> "Fizz"
                | false, true -> "Buzz"
                | true, true  -> "FizzBuzz"
                | _, _ -> string i })
    |> Async.Parallel
    |> Async.RunSynchronously
    |> Array.iter (printfn "%s")
0