結果
問題 | No.988 N×Mマス計算(総和) |
ユーザー | yumechi |
提出日時 | 2021-03-01 01:11:40 |
言語 | Scala(Beta) (3.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 539 bytes |
コンパイル時間 | 9,535 ms |
コンパイル使用メモリ | 259,848 KB |
実行使用メモリ | 98,532 KB |
最終ジャッジ日時 | 2024-10-03 00:37:42 |
合計ジャッジ時間 | 23,995 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 938 ms
69,976 KB |
testcase_01 | AC | 946 ms
64,768 KB |
testcase_02 | AC | 973 ms
65,000 KB |
testcase_03 | AC | 960 ms
65,000 KB |
testcase_04 | AC | 969 ms
64,616 KB |
testcase_05 | AC | 1,022 ms
65,232 KB |
testcase_06 | AC | 1,051 ms
65,124 KB |
testcase_07 | AC | 1,022 ms
64,908 KB |
testcase_08 | AC | 956 ms
64,868 KB |
testcase_09 | AC | 957 ms
64,804 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
ソースコード
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 k = 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) } println(brr.map(b => arr.map(a => opf(a, b)).sum % k).sum % k) }