結果

問題 No.1870 Xor Matrix
ユーザー 37zigen37zigen
提出日時 2023-04-13 14:15:17
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 668 bytes
コンパイル時間 11,512 ms
コンパイル使用メモリ 257,200 KB
実行使用メモリ 88,108 KB
最終ジャッジ日時 2024-10-09 12:10:06
合計ジャッジ時間 40,282 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 843 ms
62,776 KB
testcase_01 AC 877 ms
62,872 KB
testcase_02 AC 854 ms
62,740 KB
testcase_03 WA -
testcase_04 AC 1,289 ms
84,624 KB
testcase_05 WA -
testcase_06 AC 1,267 ms
77,548 KB
testcase_07 AC 1,259 ms
79,808 KB
testcase_08 WA -
testcase_09 AC 1,121 ms
74,124 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 1,198 ms
81,736 KB
testcase_13 AC 1,110 ms
73,260 KB
testcase_14 AC 1,281 ms
85,096 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 1,320 ms
88,108 KB
testcase_18 WA -
testcase_19 AC 1,316 ms
81,132 KB
testcase_20 AC 1,134 ms
75,536 KB
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.readLine

object Main {
  def main(args: Array[String]): Unit = {
    val Array(n, m) = readLine().split(" ").map(_.toInt)
    val row = readLine().split(" ").map(_.toInt)
    val column = readLine().split(" ").map(_.toInt)
    if (row.fold(0)(_ ^ _) == column.fold(0)(_ ^ _)) {
      println(powMod(2, 20 * (n - 1) * (m - 1)))
    } else {
      println(0)
    }
  }

  val MOD = 998244353;

  def powMod(base : Long, exp : Long): Long = {
    var result = 1L
    var b = base % MOD
    var e = exp
    while (e > 0) {
      if ((e & 1) == 1) {
        result = result * b % MOD
      }
      b = b * b % MOD
      e /= 2
    }
    result
  }
}
0