結果

問題 No.988 N×Mマス計算(総和)
ユーザー noriocnorioc
提出日時 2024-11-12 05:06:14
言語 Elixir
(1.16.2)
結果
AC  
実行時間 1,454 ms / 2,000 ms
コード長 904 bytes
コンパイル時間 1,218 ms
コンパイル使用メモリ 62,948 KB
実行使用メモリ 92,352 KB
最終ジャッジ日時 2024-11-12 05:06:39
合計ジャッジ時間 24,259 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 663 ms
53,696 KB
testcase_01 AC 645 ms
54,092 KB
testcase_02 AC 680 ms
53,932 KB
testcase_03 AC 640 ms
53,876 KB
testcase_04 AC 688 ms
54,184 KB
testcase_05 AC 638 ms
53,936 KB
testcase_06 AC 659 ms
53,756 KB
testcase_07 AC 641 ms
53,972 KB
testcase_08 AC 663 ms
54,072 KB
testcase_09 AC 662 ms
54,068 KB
testcase_10 AC 989 ms
63,368 KB
testcase_11 AC 1,337 ms
69,580 KB
testcase_12 AC 1,432 ms
84,860 KB
testcase_13 AC 1,118 ms
68,264 KB
testcase_14 AC 997 ms
64,084 KB
testcase_15 AC 1,063 ms
62,468 KB
testcase_16 AC 1,390 ms
77,304 KB
testcase_17 AC 1,424 ms
83,240 KB
testcase_18 AC 1,243 ms
73,604 KB
testcase_19 AC 1,421 ms
85,052 KB
testcase_20 AC 1,454 ms
92,352 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 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
    {_ok, s} = File.read("/dev/stdin")
    ss = s |> String.trim() |> String.split("\n")

    [_n, _m, k] = hd(ss) |> String.split() |> Enum.map(&String.to_integer/1)
    s = hd(tl(ss)) |> String.split()
    op = hd(s)
    b = tl(s) |> Enum.map(&String.to_integer/1)
    a = tl(tl(ss)) |> Enum.map(&String.to_integer/1)

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