結果

問題 No.1168 Digit Sum Sequence
ユーザー noriocnorioc
提出日時 2024-11-12 03:46:30
言語 Elixir
(1.16.2)
結果
AC  
実行時間 665 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 2,283 ms
コンパイル使用メモリ 61,316 KB
実行使用メモリ 54,408 KB
最終ジャッジ日時 2024-11-12 03:46:54
合計ジャッジ時間 24,054 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 632 ms
53,548 KB
testcase_01 AC 665 ms
54,408 KB
testcase_02 AC 625 ms
54,408 KB
testcase_03 AC 656 ms
53,868 KB
testcase_04 AC 625 ms
53,928 KB
testcase_05 AC 661 ms
53,904 KB
testcase_06 AC 617 ms
53,676 KB
testcase_07 AC 655 ms
54,148 KB
testcase_08 AC 633 ms
53,676 KB
testcase_09 AC 643 ms
54,100 KB
testcase_10 AC 636 ms
54,196 KB
testcase_11 AC 659 ms
53,752 KB
testcase_12 AC 630 ms
53,816 KB
testcase_13 AC 625 ms
53,544 KB
testcase_14 AC 644 ms
53,924 KB
testcase_15 AC 620 ms
53,728 KB
testcase_16 AC 660 ms
53,936 KB
testcase_17 AC 621 ms
54,400 KB
testcase_18 AC 624 ms
53,620 KB
testcase_19 AC 608 ms
54,404 KB
testcase_20 AC 603 ms
53,800 KB
testcase_21 AC 630 ms
53,552 KB
testcase_22 AC 639 ms
53,932 KB
testcase_23 AC 631 ms
53,548 KB
testcase_24 AC 630 ms
54,032 KB
testcase_25 AC 637 ms
53,940 KB
testcase_26 AC 614 ms
53,680 KB
testcase_27 AC 635 ms
53,796 KB
testcase_28 AC 625 ms
53,872 KB
testcase_29 AC 634 ms
54,060 KB
testcase_30 AC 609 ms
53,884 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 digital_root(0), do: 0
  def digital_root(x) when x > 0 do
    case rem(x, 9) do
      0 -> 9
      n -> n
    end
  end

  def main do
    n = ii()

    IO.puts digital_root(n)
  end
end
0