結果

問題 No.933 おまわりさんこいつです
ユーザー noriocnorioc
提出日時 2024-11-08 02:42:51
言語 Elixir
(1.16.2)
結果
TLE  
実行時間 -
コード長 427 bytes
コンパイル時間 2,297 ms
コンパイル使用メモリ 62,056 KB
実行使用メモリ 259,916 KB
最終ジャッジ日時 2024-11-08 02:43:17
合計ジャッジ時間 25,498 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 662 ms
53,936 KB
testcase_01 AC 642 ms
54,064 KB
testcase_02 AC 678 ms
53,936 KB
testcase_03 AC 642 ms
54,056 KB
testcase_04 AC 670 ms
53,812 KB
testcase_05 AC 632 ms
53,936 KB
testcase_06 AC 671 ms
53,608 KB
testcase_07 AC 628 ms
53,716 KB
testcase_08 AC 664 ms
53,936 KB
testcase_09 AC 627 ms
53,932 KB
testcase_10 AC 668 ms
53,932 KB
testcase_11 AC 636 ms
53,820 KB
testcase_12 AC 656 ms
54,056 KB
testcase_13 AC 655 ms
55,224 KB
testcase_14 AC 729 ms
56,296 KB
testcase_15 AC 713 ms
58,576 KB
testcase_16 AC 836 ms
71,204 KB
testcase_17 AC 1,053 ms
103,328 KB
testcase_18 AC 662 ms
53,936 KB
testcase_19 AC 1,145 ms
118,172 KB
testcase_20 AC 848 ms
85,680 KB
testcase_21 AC 665 ms
53,696 KB
testcase_22 AC 633 ms
54,412 KB
testcase_23 TLE -
testcase_24 TLE -
権限があれば一括ダウンロードができます

ソースコード

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 main do
    _n = ii()
    p = li()

    if Enum.member?(p, 0) do
      0
    else
      for x <- p, reduce: 1 do
        acc -> rem(acc * x, 9)
      end
      |> then(fn x -> if x == 0, do: 9, else: x end)
    end
    |> IO.puts
  end
end
0