結果

問題 No.9002 FizzBuzz(テスト用)
ユーザー Amsterdam DAmsterdam D
提出日時 2022-04-15 09:56:08
言語 OCaml
(5.1.0)
結果
WA  
実行時間 -
コード長 424 bytes
コンパイル時間 840 ms
コンパイル使用メモリ 21,480 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-06 22:39:53
合計ジャッジ時間 1,419 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

let fb = fun c -> match c with
  | 0 -> "0"
  | c when c mod 15 = 0 -> "FizzBuzz"
  | c when c mod 5  = 0 -> "Buzz"
  | c when c mod 3  = 0 -> "Fizz"
  | _ -> string_of_int c;;

let rec afb = fun l c -> match l <= c with
  | true  -> Printf.printf "%s" (fb c)
  | false ->
      Printf.printf "%s" (fb c) ;
      Printf.printf "%s" "\n" ;
      afb l (1 + c);;
      
let () = Scanf.scanf "%d" (fun x ->
    afb x 0
    
  )
0