結果

問題 No.988 N×Mマス計算(総和)
ユーザー yumechiyumechi
提出日時 2021-03-01 01:38:32
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,581 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 9,319 ms
コンパイル使用メモリ 262,592 KB
実行使用メモリ 79,448 KB
最終ジャッジ日時 2024-10-03 00:40:26
合計ジャッジ時間 37,498 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 918 ms
64,060 KB
testcase_01 AC 907 ms
63,992 KB
testcase_02 AC 934 ms
64,356 KB
testcase_03 AC 913 ms
64,384 KB
testcase_04 AC 930 ms
64,508 KB
testcase_05 AC 931 ms
64,300 KB
testcase_06 AC 918 ms
64,472 KB
testcase_07 AC 956 ms
64,128 KB
testcase_08 AC 912 ms
64,520 KB
testcase_09 AC 937 ms
64,440 KB
testcase_10 AC 1,326 ms
74,028 KB
testcase_11 AC 1,415 ms
71,920 KB
testcase_12 AC 1,573 ms
78,044 KB
testcase_13 AC 1,386 ms
74,992 KB
testcase_14 AC 1,371 ms
72,416 KB
testcase_15 AC 1,336 ms
71,148 KB
testcase_16 AC 1,493 ms
76,080 KB
testcase_17 AC 1,581 ms
77,864 KB
testcase_18 AC 1,415 ms
75,436 KB
testcase_19 AC 1,573 ms
78,408 KB
testcase_20 AC 1,573 ms
79,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

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)(BigInt(sc.nextInt)).sum % k
  val brr = Array.fill(n)(BigInt(sc.nextInt)).sum % k
  val opf = op match {
    case "+" => (x:BigInt, y:BigInt) => (x * n) % k + (y * m) % k
    case "*" => (x:BigInt, y:BigInt) => (x * y) % k
  }
  println(opf(arr, brr) % k)
}
0