結果

問題 No.1081 和の和
ユーザー noriocnorioc
提出日時 2024-11-07 13:59:23
言語 Elixir
(1.16.2)
結果
AC  
実行時間 677 ms / 2,000 ms
コード長 478 bytes
コンパイル時間 5,597 ms
コンパイル使用メモリ 61,184 KB
実行使用メモリ 54,176 KB
最終ジャッジ日時 2024-11-07 13:59:37
合計ジャッジ時間 12,285 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 649 ms
54,176 KB
testcase_01 AC 654 ms
54,052 KB
testcase_02 AC 671 ms
54,064 KB
testcase_03 AC 658 ms
53,732 KB
testcase_04 AC 671 ms
53,920 KB
testcase_05 AC 653 ms
53,932 KB
testcase_06 AC 651 ms
54,120 KB
testcase_07 AC 677 ms
54,056 KB
testcase_08 AC 644 ms
54,160 KB
testcase_09 AC 675 ms
54,064 KB
testcase_10 AC 637 ms
54,076 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
    warning: variable "n" is unused (if the variable is not meant to be used, prefix it with an underscore)
    │
 17 │     n = ii()
    │     ~
    │
    └─ Main.exs:17:5: Main.main/0

ソースコード

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 yn(b), do: IO.puts(if b, do: "Yes", else: "No")

  @mod 10**9 + 7

  def f([x]), do: x
  def f(xs) do
    Enum.chunk_every(xs, 2, 1, :discard)
    |> Enum.map(fn [a, b] -> rem(a+b, @mod) end)
    |> f()
  end

  def main do
    n = ii()
    a = li()

    ans = f(a)
    IO.puts ans
  end
end
0