結果

問題 No.1141 田グリッド
ユーザー i524i524
提出日時 2020-08-14 14:37:53
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 808 bytes
コンパイル時間 9,737 ms
コンパイル使用メモリ 259,396 KB
実行使用メモリ 77,916 KB
最終ジャッジ日時 2024-10-10 11:57:00
合計ジャッジ時間 29,544 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 917 ms
65,280 KB
testcase_01 AC 938 ms
65,384 KB
testcase_02 AC 940 ms
65,248 KB
testcase_03 WA -
testcase_04 AC 929 ms
65,212 KB
testcase_05 AC 927 ms
65,344 KB
testcase_06 AC 956 ms
65,400 KB
testcase_07 AC 928 ms
65,620 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.readLine

object Main {
  def MOD_NUMBER = 1000000007
  def modMultiply(x: Int, y: Int): Int = {
    val result = x * y
    if (result > MOD_NUMBER) result % MOD_NUMBER else result
  }
  def main(args: Array[String]): Unit = {
    val arr = readLine().split(" ").map(_.toInt)
    val h = arr(0)
    val w = arr(1)

    val numbers = 0 until h map(_ => readLine().split(" ").map(_.toInt))
    val q = readLine().toInt
    val lines = 0 until q map(_ => readLine().split(" ").map(_.toInt))

    val rowResults = numbers map(row => row.reduceLeft(_ * _))
    lines foreach {
      case Array(row, column) => {
        val result = 0 until h filter(_ != row - 1) map(i => rowResults(i) / numbers(i)(column - 1)) reduceLeft modMultiply
        System.out.println(result)
      }
    }
  }
}
0