結果

問題 No.987 N×Mマス計算(基本)
ユーザー penqenpenqen
提出日時 2020-12-24 23:06:13
言語 Elixir
(1.18.1)
結果
AC  
実行時間 601 ms / 2,000 ms
コード長 653 bytes
コンパイル時間 1,138 ms
コンパイル使用メモリ 64,128 KB
実行使用メモリ 55,472 KB
最終ジャッジ日時 2024-12-31 05:33:40
合計ジャッジ時間 13,741 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 566 ms
54,692 KB
testcase_01 AC 560 ms
54,004 KB
testcase_02 AC 554 ms
54,720 KB
testcase_03 AC 577 ms
54,384 KB
testcase_04 AC 556 ms
53,784 KB
testcase_05 AC 570 ms
54,700 KB
testcase_06 AC 566 ms
54,116 KB
testcase_07 AC 560 ms
54,628 KB
testcase_08 AC 553 ms
54,112 KB
testcase_09 AC 554 ms
54,704 KB
testcase_10 AC 540 ms
54,224 KB
testcase_11 AC 554 ms
54,500 KB
testcase_12 AC 563 ms
54,852 KB
testcase_13 AC 575 ms
54,196 KB
testcase_14 AC 589 ms
54,608 KB
testcase_15 AC 585 ms
55,040 KB
testcase_16 AC 601 ms
54,428 KB
testcase_17 AC 588 ms
54,312 KB
testcase_18 AC 587 ms
55,472 KB
testcase_19 AC 579 ms
54,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    [n, m] = IO.read(:line) |> String.trim() |> String.split() |> Enum.map(&String.to_integer/1)
    [op, bm] = IO.read(:line) |> String.trim() |> String.split() |> (fn
      [op | tail] -> [op, Enum.map(tail, &String.to_integer/1)]
    end).()
    an = for _ <- 1..n, do: IO.read(:line) |> String.trim() |> String.to_integer()
    solve(m, n, op, bm, an) |> Enum.map_join("\n", &(Enum.join(&1, " "))) |> IO.puts()
  end

  def solve(_m, _n, op, bm, an) do
    Enum.map(an, fn ai ->
      Enum.map(bm, fn bj ->
        case op do
          "+" -> ai + bj
          "*" -> ai * bj
        end
      end)
    end)
  end
end
0