結果

問題 No.500 階乗電卓
ユーザー noriocnorioc
提出日時 2024-08-02 02:56:46
言語 Elixir
(1.16.2)
結果
WA  
実行時間 -
コード長 446 bytes
コンパイル時間 2,575 ms
コンパイル使用メモリ 62,176 KB
実行使用メモリ 55,852 KB
最終ジャッジ日時 2024-08-02 02:57:07
合計ジャッジ時間 17,681 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 558 ms
54,036 KB
testcase_05 AC 553 ms
54,216 KB
testcase_06 AC 566 ms
54,224 KB
testcase_07 AC 554 ms
54,288 KB
testcase_08 AC 558 ms
54,348 KB
testcase_09 AC 559 ms
54,200 KB
testcase_10 AC 546 ms
54,280 KB
testcase_11 AC 564 ms
55,276 KB
testcase_12 AC 544 ms
55,172 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 546 ms
54,128 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def input, do: IO.read(:line) |> String.trim
  def ii, do: input() |> String.to_integer
  def li, do: input() |> String.split |> Enum.map(&String.to_integer/1)
  def yn(b), do: (if b, do: "Yes", else: "No")

  @mod 10 ** 12
  def main do
    n = ii()
    ans = f(1, n, 1)
    IO.puts ans
  end

  def f(_, _, 0), do: 0
  def f(x, n, t) do
    cond do
      x > n -> t
      true -> f(x+1, n, rem(x*t, @mod))
    end
  end
end
0