結果

問題 No.500 階乗電卓
ユーザー noriocnorioc
提出日時 2024-08-02 03:39:57
言語 Elixir
(1.16.2)
結果
AC  
実行時間 567 ms / 2,000 ms
コード長 562 bytes
コンパイル時間 1,039 ms
コンパイル使用メモリ 62,704 KB
実行使用メモリ 55,820 KB
最終ジャッジ日時 2024-08-02 03:40:15
合計ジャッジ時間 15,731 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 527 ms
53,752 KB
testcase_01 AC 548 ms
54,392 KB
testcase_02 AC 532 ms
54,320 KB
testcase_03 AC 526 ms
54,800 KB
testcase_04 AC 560 ms
54,672 KB
testcase_05 AC 529 ms
55,136 KB
testcase_06 AC 560 ms
54,576 KB
testcase_07 AC 529 ms
54,360 KB
testcase_08 AC 544 ms
55,272 KB
testcase_09 AC 527 ms
53,876 KB
testcase_10 AC 534 ms
55,804 KB
testcase_11 AC 550 ms
54,532 KB
testcase_12 AC 521 ms
54,360 KB
testcase_13 AC 552 ms
53,996 KB
testcase_14 AC 523 ms
53,736 KB
testcase_15 AC 540 ms
53,996 KB
testcase_16 AC 534 ms
53,812 KB
testcase_17 AC 543 ms
53,728 KB
testcase_18 AC 552 ms
54,800 KB
testcase_19 AC 539 ms
53,960 KB
testcase_20 AC 563 ms
54,544 KB
testcase_21 AC 538 ms
55,820 KB
testcase_22 AC 567 ms
53,956 KB
権限があれば一括ダウンロードができます

ソースコード

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()
    x = f(1, n, 1)

    ans = case x do
      0 -> String.duplicate("0", 12)
      _ -> Integer.to_string(x) |> String.slice(-12..-1)
    end

    IO.puts ans
  end

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