結果

問題 No.987 N×Mマス計算(基本)
ユーザー mnao305mnao305
提出日時 2020-02-14 21:57:19
言語 JavaScript
(node v21.7.1)
結果
WA  
実行時間 -
コード長 461 bytes
コンパイル時間 56 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 50,912 KB
最終ジャッジ日時 2024-10-13 01:30:04
合計ジャッジ時間 3,384 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
39,424 KB
testcase_01 AC 61 ms
39,040 KB
testcase_02 AC 148 ms
44,032 KB
testcase_03 AC 82 ms
40,576 KB
testcase_04 AC 120 ms
43,008 KB
testcase_05 AC 111 ms
42,624 KB
testcase_06 AC 141 ms
43,776 KB
testcase_07 AC 96 ms
41,472 KB
testcase_08 AC 69 ms
39,296 KB
testcase_09 AC 68 ms
39,296 KB
testcase_10 WA -
testcase_11 AC 144 ms
43,520 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 65 ms
39,424 KB
testcase_15 AC 99 ms
41,472 KB
testcase_16 AC 167 ms
48,896 KB
testcase_17 WA -
testcase_18 AC 159 ms
48,640 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

"use strict"

const main = (INPUT) => {
  const input = INPUT.split("\n")
  const N = input[0].split(' ')[0]
  const M = input[0].split(' ')[1]
  input.shift()
  const b = input[0].split(" ")
  const op = b.shift()
  input.shift()
  for (let i = 0; i < N; i++) {
    let ans = ""
    for (let j = 0; j < M; j++) {
      ans += ` ${eval(`${input[i]}${op}${b[j]}`)}`
    }
    console.log(ans.trim())
  }
}

main(require("fs").readFileSync("/dev/stdin", "utf8"))
0