結果

問題 No.311 z in FizzBuzzString
ユーザー chike_pluschike_plus
提出日時 2019-03-27 07:37:57
言語 F#
(F# 4.0)
結果
TLE  
実行時間 -
コード長 473 bytes
コンパイル時間 6,724 ms
コンパイル使用メモリ 186,560 KB
実行使用メモリ 172,872 KB
最終ジャッジ日時 2024-09-24 22:17:08
合計ジャッジ時間 10,373 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
34,304 KB
testcase_01 AC 71 ms
36,480 KB
testcase_02 AC 72 ms
30,464 KB
testcase_03 AC 72 ms
30,976 KB
testcase_04 AC 73 ms
30,592 KB
testcase_05 AC 72 ms
30,952 KB
testcase_06 AC 74 ms
30,720 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (229 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 % 3m , arg % 5m ) with
    | 0m , 0m -> FizzBuzz
    | 0m , _ -> Fizz
    | _ , 0m -> Buzz
    | _ , _ -> Other

  stdin.ReadLine()
  |> decimal
  |> fun n ->
    [1m..n]
    |> List.sumBy (fun i ->
      match i with
      | FizzBuzz  -> 4
      | Fizz      -> 2
      | Buzz      -> 2
      | Other     -> 0
    )
    |> stdout.WriteLine    

``No.311 z in FizzBuzzString``()
0