結果

問題 No.311 z in FizzBuzzString
ユーザー ichibanshiboriichibanshibori
提出日時 2016-10-09 00:18:37
言語 OCaml
(5.1.0)
結果
AC  
実行時間 2 ms / 1,500 ms
コード長 380 bytes
コンパイル時間 2,233 ms
コンパイル使用メモリ 22,252 KB
実行使用メモリ 4,372 KB
最終ジャッジ日時 2023-10-25 02:47:15
合計ジャッジ時間 1,502 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,348 KB
testcase_01 AC 2 ms
4,372 KB
testcase_02 AC 2 ms
4,372 KB
testcase_03 AC 1 ms
4,372 KB
testcase_04 AC 2 ms
4,372 KB
testcase_05 AC 2 ms
4,372 KB
testcase_06 AC 2 ms
4,372 KB
testcase_07 AC 2 ms
4,372 KB
testcase_08 AC 2 ms
4,372 KB
testcase_09 AC 1 ms
4,372 KB
testcase_10 AC 2 ms
4,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

let ( +@ ) = Int64.add
let ( -@ ) = Int64.sub
let ( *@ ) = Int64.mul
let ( /@ ) = Int64.div

let () =
  let n = read_line () |> Int64.of_string in
  let fb = n /@ (Int64.of_int 15) in
  let f = (n /@ (Int64.of_int 3)) -@ fb
  and b = (n /@ (Int64.of_int 5)) -@ fb
  in
  let ans = (fb *@ (Int64.of_int 4)) +@ ((f +@ b) *@ (Int64.of_int 2)) in
  print_endline (Int64.to_string ans)
0