結果

問題 No.988 N×Mマス計算(総和)
ユーザー noriocnorioc
提出日時 2024-11-12 05:01:00
言語 Elixir
(1.16.2)
結果
TLE  
実行時間 -
コード長 734 bytes
コンパイル時間 1,475 ms
コンパイル使用メモリ 62,236 KB
実行使用メモリ 164,460 KB
最終ジャッジ日時 2024-11-12 05:01:17
合計ジャッジ時間 13,641 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 641 ms
53,940 KB
testcase_01 AC 664 ms
53,936 KB
testcase_02 AC 634 ms
54,064 KB
testcase_03 AC 663 ms
53,868 KB
testcase_04 AC 646 ms
54,064 KB
testcase_05 AC 663 ms
53,980 KB
testcase_06 AC 656 ms
53,556 KB
testcase_07 AC 669 ms
54,536 KB
testcase_08 AC 636 ms
54,076 KB
testcase_09 AC 677 ms
53,772 KB
testcase_10 AC 1,890 ms
80,508 KB
testcase_11 AC 1,433 ms
164,460 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
    warning: variable "m" is unused (if the variable is not meant to be used, prefix it with an underscore)
    │
 24 │     [n, m, k] = li()
    │         ~
    │
    └─ Main.exs:24:9: 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")

  def f("+", a, b, mod) do
    na = length(a)
    nb = length(b)
    sa = rem(Enum.sum(a), mod)
    sb = rem(Enum.sum(b), mod)

    rem(sa*nb + sb*na, mod)
  end

  def f("*", a, b, mod) do
    sa = rem(Enum.sum(a), mod)
    sb = rem(Enum.sum(b), mod)

    rem(sa * sb, mod)
  end

  def main do
    [n, m, k] = li()
    s = input() |> String.split()
    op = hd(s)
    b = tl(s) |> Enum.map(&String.to_integer/1)
    a = for _ <- 1..n, do: ii()

    ans = f(op, a, b, k)
    IO.puts ans
  end
end
0