結果

問題 No.1168 Digit Sum Sequence
ユーザー penqenpenqen
提出日時 2020-12-15 20:51:51
言語 Elixir
(1.16.2)
結果
AC  
実行時間 607 ms / 2,000 ms
コード長 595 bytes
コンパイル時間 1,099 ms
コンパイル使用メモリ 62,424 KB
実行使用メモリ 55,456 KB
最終ジャッジ日時 2024-06-10 00:13:00
合計ジャッジ時間 21,401 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 587 ms
54,504 KB
testcase_01 AC 589 ms
55,456 KB
testcase_02 AC 607 ms
53,976 KB
testcase_03 AC 601 ms
53,996 KB
testcase_04 AC 589 ms
55,160 KB
testcase_05 AC 592 ms
53,976 KB
testcase_06 AC 597 ms
54,828 KB
testcase_07 AC 604 ms
53,740 KB
testcase_08 AC 592 ms
53,620 KB
testcase_09 AC 588 ms
54,896 KB
testcase_10 AC 586 ms
54,672 KB
testcase_11 AC 584 ms
54,124 KB
testcase_12 AC 583 ms
54,852 KB
testcase_13 AC 592 ms
54,196 KB
testcase_14 AC 593 ms
53,996 KB
testcase_15 AC 583 ms
54,312 KB
testcase_16 AC 585 ms
54,380 KB
testcase_17 AC 587 ms
54,196 KB
testcase_18 AC 592 ms
54,096 KB
testcase_19 AC 583 ms
55,380 KB
testcase_20 AC 577 ms
54,684 KB
testcase_21 AC 590 ms
54,348 KB
testcase_22 AC 597 ms
54,444 KB
testcase_23 AC 589 ms
54,056 KB
testcase_24 AC 595 ms
55,076 KB
testcase_25 AC 585 ms
54,776 KB
testcase_26 AC 592 ms
54,604 KB
testcase_27 AC 601 ms
55,300 KB
testcase_28 AC 587 ms
54,732 KB
testcase_29 AC 586 ms
54,296 KB
testcase_30 AC 604 ms
54,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

  def solve(n), do: solve(n, 1)

  def solve(n, _) when n < 10, do: n
  def solve(n, 100), do: n
  def solve(n, i) when 1 <= n and n <= 1_000_000_000 do
    num_of_digits = n |> to_string() |> String.length()
    n |> a_i(num_of_digits) |> solve(i + 1)
  end
  def solve(_, _), do: :error

  def a_i(n, 0), do: n
  def a_i(n, num_of_digits) do
    base = :math.pow(10, num_of_digits) |> round()
    div(n, base) + a_i(rem(n, base), num_of_digits - 1)
  end

end
0