結果

問題 No.9002 FizzBuzz(テスト用)
ユーザー TatsunoTatsuno
提出日時 2016-03-13 04:02:26
言語 F#
(F# 4.0)
結果
AC  
実行時間 73 ms / 5,000 ms
コード長 525 bytes
コンパイル時間 15,586 ms
コンパイル使用メモリ 198,944 KB
実行使用メモリ 30,720 KB
最終ジャッジ日時 2024-09-25 11:15:02
合計ジャッジ時間 8,189 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
30,588 KB
testcase_01 AC 71 ms
30,720 KB
testcase_02 AC 73 ms
30,464 KB
testcase_03 AC 72 ms
30,680 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (719 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(13,13): warning FS0025: この式のパターン マッチが不完全です たとえば、値 '[_;_]' はパターンに含まれないケースを示す可能性があります。 [/home/judge/data/code/main.fsproj]
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

open System

module Main =
    let scanfn f = Array.toList (Console.ReadLine().Split(' ')) |> List.map f

    let solve = function
         | x when (x % 15) = 0 -> "FizzBuzz"
         | x when (x % 3) = 0 -> "Fizz"
         | x when (x % 5) = 0 -> "Buzz"
         | x -> x |> string

    let main =
        let [n;] = scanfn int
        let rec f = function
            | x when x > n -> ()
            | x -> solve x |> printfn "%s"
                   x + 1 |> f
        f 1
    
[<EntryPoint>]
let main argv = Main.main; 0
0