結果

問題 No.933 おまわりさんこいつです
ユーザー noriocnorioc
提出日時 2024-11-08 02:43:55
言語 Elixir
(1.16.2)
結果
TLE  
実行時間 -
コード長 435 bytes
コンパイル時間 4,497 ms
コンパイル使用メモリ 61,212 KB
実行使用メモリ 280,036 KB
最終ジャッジ日時 2024-11-08 02:44:23
合計ジャッジ時間 23,765 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 656 ms
53,556 KB
testcase_01 AC 683 ms
54,076 KB
testcase_02 AC 651 ms
53,932 KB
testcase_03 AC 657 ms
53,748 KB
testcase_04 AC 648 ms
53,676 KB
testcase_05 AC 671 ms
53,828 KB
testcase_06 AC 653 ms
53,940 KB
testcase_07 AC 667 ms
53,676 KB
testcase_08 AC 665 ms
53,648 KB
testcase_09 AC 692 ms
53,820 KB
testcase_10 AC 665 ms
53,804 KB
testcase_11 AC 693 ms
53,936 KB
testcase_12 AC 636 ms
53,940 KB
testcase_13 AC 698 ms
54,716 KB
testcase_14 AC 699 ms
55,596 KB
testcase_15 AC 719 ms
58,796 KB
testcase_16 AC 834 ms
71,164 KB
testcase_17 AC 1,047 ms
103,016 KB
testcase_18 AC 645 ms
53,848 KB
testcase_19 AC 1,146 ms
118,240 KB
testcase_20 AC 878 ms
85,480 KB
testcase_21 AC 638 ms
54,412 KB
testcase_22 AC 676 ms
53,416 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 * rem(x, 9), 9)
      end
      |> then(fn x -> if x == 0, do: 9, else: x end)
    end
    |> IO.puts
  end
end
0