結果

問題 No.1870 Xor Matrix
ユーザー 37zigen37zigen
提出日時 2023-04-13 14:18:52
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,161 ms / 2,000 ms
コード長 670 bytes
コンパイル時間 18,084 ms
コンパイル使用メモリ 262,636 KB
実行使用メモリ 88,200 KB
最終ジャッジ日時 2024-12-12 17:28:32
合計ジャッジ時間 42,050 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 793 ms
62,872 KB
testcase_01 AC 770 ms
63,196 KB
testcase_02 AC 741 ms
63,104 KB
testcase_03 AC 1,111 ms
76,496 KB
testcase_04 AC 1,154 ms
84,536 KB
testcase_05 AC 986 ms
76,640 KB
testcase_06 AC 1,124 ms
78,104 KB
testcase_07 AC 1,106 ms
79,820 KB
testcase_08 AC 1,131 ms
81,256 KB
testcase_09 AC 998 ms
74,236 KB
testcase_10 AC 1,024 ms
80,252 KB
testcase_11 AC 1,019 ms
80,384 KB
testcase_12 AC 1,033 ms
81,592 KB
testcase_13 AC 994 ms
73,360 KB
testcase_14 AC 1,125 ms
84,304 KB
testcase_15 AC 964 ms
73,212 KB
testcase_16 AC 1,059 ms
74,668 KB
testcase_17 AC 1,161 ms
88,200 KB
testcase_18 AC 1,062 ms
78,976 KB
testcase_19 AC 1,112 ms
81,056 KB
testcase_20 AC 1,002 ms
75,556 KB
testcase_21 AC 913 ms
69,788 KB
testcase_22 AC 1,002 ms
76,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.readLine

object Main {
  def main(args: Array[String]): Unit = {
    val Array(n, m) = readLine().split(" ").map(_.toLong)
    val row = readLine().split(" ").map(_.toInt)
    val column = readLine().split(" ").map(_.toInt)
    if (row.fold(0)(_ ^ _) == column.fold(0)(_ ^ _)) {
      println(powMod(1 << 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