結果
問題 | No.9002 FizzBuzz(テスト用) |
ユーザー | nohopen |
提出日時 | 2019-06-09 22:27:37 |
言語 | F# (F# 4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 226 bytes |
コンパイル時間 | 6,557 ms |
コンパイル使用メモリ | 184,852 KB |
実行使用メモリ | 30,976 KB |
最終ジャッジ日時 | 2024-10-06 00:22:00 |
合計ジャッジ時間 | 7,524 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 64 ms
30,848 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (209 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/
ソースコード
open System let fb x = match (x%3, x%5) with | (0, 0) -> "FizzBuzz" | (0, _) -> "Buzz" | (_, 0) -> "Fizz" | _ -> string x let N = int(Console.ReadLine()) [1..N] |> List.map fb |> List.iter (printfn "%s")