結果

問題 No.207 世界のなんとか
ユーザー chike_pluschike_plus
提出日時 2019-03-19 00:48:12
言語 F#
(F# 4.0)
結果
AC  
実行時間 340 ms / 5,000 ms
コード長 422 bytes
コンパイル時間 9,864 ms
コンパイル使用メモリ 185,784 KB
実行使用メモリ 35,160 KB
最終ジャッジ日時 2024-07-19 10:53:38
合計ジャッジ時間 17,261 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 334 ms
34,252 KB
testcase_01 AC 332 ms
34,132 KB
testcase_02 AC 336 ms
33,960 KB
testcase_03 AC 336 ms
34,652 KB
testcase_04 AC 332 ms
35,040 KB
testcase_05 AC 336 ms
34,776 KB
testcase_06 AC 337 ms
35,036 KB
testcase_07 AC 340 ms
35,036 KB
testcase_08 AC 338 ms
34,396 KB
testcase_09 AC 336 ms
34,912 KB
testcase_10 AC 337 ms
34,256 KB
testcase_11 AC 335 ms
35,160 KB
testcase_12 AC 340 ms
34,904 KB
testcase_13 AC 338 ms
34,016 KB
testcase_14 AC 335 ms
35,036 KB
testcase_15 AC 339 ms
34,912 KB
testcase_16 AC 338 ms
33,908 KB
testcase_17 AC 340 ms
34,256 KB
testcase_18 AC 57 ms
29,056 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (554 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 #

open System

let A, B = Console.ReadLine().Split(' ')
           |> fun s -> (s.[0] |> int , s.[1] |> int)

let ( |Multiple3|Number3|Number| ) n =
  match ( n % 3 ) , ( string n ).Contains("3") with
  | 0 , _    -> Multiple3
  | _ , true -> Number3
  | _ , false-> Number
  
let fizzBuzz n =
  match n with
  | Multiple3 -> printfn "%i" n
  | Number3   -> printfn "%i" n
  | Number    -> ()

[A..B]
|> List.iter (fizzBuzz)
0