結果

問題 No.311 z in FizzBuzzString
ユーザー chike_pluschike_plus
提出日時 2019-03-27 07:30:12
言語 F#
(F# 4.0)
結果
RE  
実行時間 -
コード長 463 bytes
コンパイル時間 11,607 ms
コンパイル使用メモリ 187,200 KB
実行使用メモリ 37,504 KB
最終ジャッジ日時 2024-09-24 22:17:28
合計ジャッジ時間 9,758 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
29,440 KB
testcase_01 AC 62 ms
29,440 KB
testcase_02 AC 61 ms
29,312 KB
testcase_03 AC 62 ms
29,696 KB
testcase_04 AC 62 ms
29,540 KB
testcase_05 AC 61 ms
29,540 KB
testcase_06 AC 62 ms
29,540 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (322 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 ``No.311 z in FizzBuzzString``() =

  let (|Fizz|Buzz|FizzBuzz|Other|) arg =
    match (arg%3) , (arg%5) with
    | 0 , 0 -> FizzBuzz
    | 0 , _ -> Fizz
    | _ , 0 -> Buzz
    | _ , _ -> Other

  stdin.ReadLine()
  |> int
  |> fun n ->
    [1..n]
    |> List.sumBy (fun i ->
      match i with
      | FizzBuzz  -> 4
      | Fizz      -> 2
      | Buzz      -> 2
      | Other     -> 0
    )
    |> stdout.WriteLine    
    
``No.311 z in FizzBuzzString``()
0