結果

問題 No.1168 Digit Sum Sequence
ユーザー noriocnorioc
提出日時 2024-11-11 05:11:53
言語 Elixir
(1.16.2)
結果
AC  
実行時間 598 ms / 2,000 ms
コード長 363 bytes
コンパイル時間 1,210 ms
コンパイル使用メモリ 62,256 KB
実行使用メモリ 54,280 KB
最終ジャッジ日時 2024-11-11 05:12:18
合計ジャッジ時間 20,031 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 531 ms
54,184 KB
testcase_01 AC 555 ms
53,540 KB
testcase_02 AC 536 ms
53,936 KB
testcase_03 AC 553 ms
53,764 KB
testcase_04 AC 536 ms
54,276 KB
testcase_05 AC 557 ms
54,236 KB
testcase_06 AC 521 ms
54,056 KB
testcase_07 AC 522 ms
53,936 KB
testcase_08 AC 546 ms
53,944 KB
testcase_09 AC 529 ms
54,060 KB
testcase_10 AC 558 ms
53,680 KB
testcase_11 AC 540 ms
54,076 KB
testcase_12 AC 529 ms
54,064 KB
testcase_13 AC 598 ms
54,280 KB
testcase_14 AC 539 ms
54,004 KB
testcase_15 AC 567 ms
53,568 KB
testcase_16 AC 542 ms
53,940 KB
testcase_17 AC 551 ms
54,000 KB
testcase_18 AC 534 ms
53,812 KB
testcase_19 AC 542 ms
53,932 KB
testcase_20 AC 559 ms
53,680 KB
testcase_21 AC 536 ms
53,552 KB
testcase_22 AC 564 ms
53,936 KB
testcase_23 AC 531 ms
53,808 KB
testcase_24 AC 556 ms
53,672 KB
testcase_25 AC 536 ms
53,680 KB
testcase_26 AC 530 ms
53,680 KB
testcase_27 AC 550 ms
53,928 KB
testcase_28 AC 530 ms
54,032 KB
testcase_29 AC 558 ms
53,868 KB
testcase_30 AC 532 ms
53,676 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 f(x) do
    if x == 0 do
      0
    else
      case rem(x, 9) do
        0 -> 9
        n -> n
      end
    end
  end

  def main do
    n = ii()

    IO.puts f(n)
  end
end
0