結果

問題 No.987 N×Mマス計算(基本)
ユーザー yumechiyumechi
提出日時 2021-02-18 01:29:34
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 399 bytes
コンパイル時間 9,180 ms
コンパイル使用メモリ 262,100 KB
実行使用メモリ 66,300 KB
最終ジャッジ日時 2024-09-14 10:01:16
合計ジャッジ時間 31,629 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 991 ms
66,064 KB
testcase_01 AC 1,000 ms
66,028 KB
testcase_02 AC 1,067 ms
66,192 KB
testcase_03 AC 1,018 ms
65,860 KB
testcase_04 AC 1,036 ms
66,300 KB
testcase_05 AC 1,013 ms
66,008 KB
testcase_06 AC 1,026 ms
66,128 KB
testcase_07 AC 1,017 ms
66,088 KB
testcase_08 AC 1,008 ms
65,856 KB
testcase_09 AC 999 ms
65,984 KB
testcase_10 WA -
testcase_11 AC 1,080 ms
66,000 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 1,028 ms
65,908 KB
testcase_15 AC 1,044 ms
66,204 KB
testcase_16 AC 1,087 ms
65,924 KB
testcase_17 WA -
testcase_18 AC 1,088 ms
66,148 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Main extends App {
  val sc = new Scanner(System.in)

  val n = sc.nextInt
  val m = sc.nextInt
  val op = sc.next
  val arr = Array.fill(m)(sc.nextInt)
  val brr = Array.fill(n)(sc.nextInt)
  val opf = op match {
    case "+" => (x:Int, y:Int) => (x + y)
    case "*" => (x:Int, y:Int) => (x * y)
  }
  brr.map(b => println(arr.map(a => opf(a, b)).mkString(" ")))
}
0