結果

問題 No.987 N×Mマス計算(基本)
ユーザー yumechiyumechi
提出日時 2021-02-18 01:31:44
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,125 ms / 2,000 ms
コード長 516 bytes
コンパイル時間 13,794 ms
コンパイル使用メモリ 270,060 KB
実行使用メモリ 66,152 KB
最終ジャッジ日時 2024-09-14 10:04:09
合計ジャッジ時間 31,842 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 976 ms
65,740 KB
testcase_01 AC 976 ms
65,748 KB
testcase_02 AC 1,060 ms
66,088 KB
testcase_03 AC 1,006 ms
65,704 KB
testcase_04 AC 1,028 ms
66,096 KB
testcase_05 AC 1,045 ms
65,944 KB
testcase_06 AC 1,047 ms
65,744 KB
testcase_07 AC 1,038 ms
65,752 KB
testcase_08 AC 1,006 ms
65,772 KB
testcase_09 AC 1,012 ms
65,732 KB
testcase_10 AC 1,011 ms
65,928 KB
testcase_11 AC 1,042 ms
66,084 KB
testcase_12 AC 1,114 ms
66,124 KB
testcase_13 AC 1,016 ms
65,880 KB
testcase_14 AC 997 ms
65,824 KB
testcase_15 AC 1,024 ms
65,852 KB
testcase_16 AC 1,109 ms
65,952 KB
testcase_17 AC 1,052 ms
65,848 KB
testcase_18 AC 1,098 ms
66,152 KB
testcase_19 AC 1,125 ms
65,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger
import java.util.Scanner
import scala.math.BigInt.javaBigInteger2bigInt

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.nextBigInteger)
  val brr = Array.fill(n)(sc.nextBigInteger)
  val opf = op match {
    case "+" => (x:BigInteger, y:BigInteger) => (x + y)
    case "*" => (x:BigInteger, y:BigInteger) => (x * y)
  }
  brr.map(b => println(arr.map(a => opf(a, b)).mkString(" ")))
}
0