結果

問題 No.500 階乗電卓
ユーザー gemmarogemmaro
提出日時 2020-05-13 09:04:57
言語 Elixir
(1.16.2)
結果
AC  
実行時間 589 ms / 2,000 ms
コード長 603 bytes
コンパイル時間 1,345 ms
コンパイル使用メモリ 64,372 KB
実行使用メモリ 55,848 KB
最終ジャッジ日時 2024-06-10 00:00:04
合計ジャッジ時間 15,313 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 533 ms
53,736 KB
testcase_01 AC 551 ms
54,092 KB
testcase_02 AC 561 ms
55,848 KB
testcase_03 AC 541 ms
54,080 KB
testcase_04 AC 555 ms
54,880 KB
testcase_05 AC 558 ms
54,000 KB
testcase_06 AC 561 ms
54,964 KB
testcase_07 AC 553 ms
54,680 KB
testcase_08 AC 551 ms
54,120 KB
testcase_09 AC 589 ms
53,920 KB
testcase_10 AC 567 ms
54,864 KB
testcase_11 AC 566 ms
54,204 KB
testcase_12 AC 545 ms
53,872 KB
testcase_13 AC 542 ms
54,120 KB
testcase_14 AC 540 ms
54,352 KB
testcase_15 AC 532 ms
54,572 KB
testcase_16 AC 539 ms
53,876 KB
testcase_17 AC 534 ms
55,348 KB
testcase_18 AC 540 ms
53,828 KB
testcase_19 AC 534 ms
55,048 KB
testcase_20 AC 535 ms
54,716 KB
testcase_21 AC 542 ms
54,464 KB
testcase_22 AC 537 ms
55,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  @mask 1_000_000_000_000

  def main do
    IO.read(:line) |> String.trim() |> String.to_integer() |> solve |> IO.puts()
  end

  def solve(n) do
    cond do
      n < 60 -> solve_rec(n, 1, false)
      :else -> "000000000000"
    end
  end

  def solve_rec(1, r, pad) do
    cond do
      pad -> r |> to_string |> String.pad_leading(12, "0")
      :else -> r
    end
  end

  def solve_rec(n, r, pad) do
    tmp = n * r
    a = tmp |> div(@mask)

    cond do
      a == 0 -> solve_rec(n - 1, tmp, pad || false)
      :else -> solve_rec(n - 1, tmp - a * @mask, true)
    end
  end
end
0