結果

問題 No.988 N×Mマス計算(総和)
ユーザー le_panda_noirle_panda_noir
提出日時 2020-02-19 22:48:18
言語 Elixir
(1.16.2)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 450 bytes
コンパイル時間 908 ms
コンパイル使用メモリ 63,012 KB
実行使用メモリ 157,016 KB
最終ジャッジ日時 2024-06-09 23:01:43
合計ジャッジ時間 16,658 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 549 ms
53,936 KB
testcase_01 AC 538 ms
53,928 KB
testcase_02 AC 546 ms
53,936 KB
testcase_03 AC 535 ms
53,812 KB
testcase_04 AC 534 ms
54,020 KB
testcase_05 AC 548 ms
53,804 KB
testcase_06 AC 549 ms
53,672 KB
testcase_07 AC 539 ms
53,744 KB
testcase_08 AC 541 ms
53,800 KB
testcase_09 AC 531 ms
54,020 KB
testcase_10 AC 1,728 ms
78,236 KB
testcase_11 AC 1,312 ms
157,016 KB
testcase_12 TLE -
testcase_13 AC 1,442 ms
108,104 KB
testcase_14 AC 1,232 ms
127,604 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    toi = &String.to_integer/1
    split = &String.split/1

    [n, m, k] = IO.gets("") |> split.() |> Enum.map(toi)
    [op | b] = IO.gets("") |> split.()
    b = Enum.map(b, toi) |> Enum.sum() |> (&rem(&1,k)).()

    Enum.map(1..n, fn _ ->
      a = IO.gets("") |> String.trim |> toi.()
      if op == "+", do: rem(a*m + b, k),
      else: rem(a * b, k)
    end) |> Enum.sum |> (&rem(&1, k)).() |> IO.puts
  end
end
0