結果

問題 No.987 N×Mマス計算(基本)
ユーザー penqenpenqen
提出日時 2020-12-24 23:06:13
言語 Elixir
(1.16.2)
結果
AC  
実行時間 674 ms / 2,000 ms
コード長 653 bytes
コンパイル時間 1,252 ms
コンパイル使用メモリ 63,128 KB
実行使用メモリ 54,732 KB
最終ジャッジ日時 2024-06-10 00:24:59
合計ジャッジ時間 15,931 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 652 ms
54,108 KB
testcase_01 AC 653 ms
54,292 KB
testcase_02 AC 666 ms
54,272 KB
testcase_03 AC 661 ms
54,452 KB
testcase_04 AC 674 ms
54,604 KB
testcase_05 AC 652 ms
54,128 KB
testcase_06 AC 648 ms
54,060 KB
testcase_07 AC 664 ms
54,108 KB
testcase_08 AC 660 ms
54,076 KB
testcase_09 AC 651 ms
54,292 KB
testcase_10 AC 648 ms
54,324 KB
testcase_11 AC 648 ms
54,724 KB
testcase_12 AC 660 ms
54,732 KB
testcase_13 AC 646 ms
54,600 KB
testcase_14 AC 655 ms
54,068 KB
testcase_15 AC 660 ms
54,256 KB
testcase_16 AC 664 ms
54,532 KB
testcase_17 AC 671 ms
54,492 KB
testcase_18 AC 667 ms
54,360 KB
testcase_19 AC 663 ms
54,212 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