結果

問題 No.1870 Xor Matrix
ユーザー yudedakoyudedako
提出日時 2022-03-16 00:26:48
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,386 ms / 2,000 ms
コード長 820 bytes
コンパイル時間 12,135 ms
コンパイル使用メモリ 268,028 KB
実行使用メモリ 85,732 KB
最終ジャッジ日時 2024-09-22 17:03:03
合計ジャッジ時間 42,476 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 877 ms
64,704 KB
testcase_01 AC 888 ms
64,812 KB
testcase_02 AC 886 ms
64,648 KB
testcase_03 AC 1,305 ms
77,612 KB
testcase_04 AC 1,360 ms
84,788 KB
testcase_05 AC 1,107 ms
76,628 KB
testcase_06 AC 1,284 ms
80,192 KB
testcase_07 AC 1,297 ms
83,064 KB
testcase_08 AC 1,292 ms
83,644 KB
testcase_09 AC 1,139 ms
75,588 KB
testcase_10 AC 1,172 ms
82,112 KB
testcase_11 AC 1,188 ms
80,568 KB
testcase_12 AC 1,204 ms
82,348 KB
testcase_13 AC 1,146 ms
75,216 KB
testcase_14 AC 1,329 ms
85,732 KB
testcase_15 AC 1,144 ms
74,196 KB
testcase_16 AC 1,252 ms
76,420 KB
testcase_17 AC 1,386 ms
84,912 KB
testcase_18 AC 1,250 ms
79,468 KB
testcase_19 AC 1,344 ms
81,612 KB
testcase_20 AC 1,156 ms
77,804 KB
testcase_21 AC 1,068 ms
69,748 KB
testcase_22 AC 1,172 ms
77,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter
import scala.collection.mutable.*
import scala.io.StdIn.*
import scala.util.chaining.*
import scala.math.*
import scala.reflect.ClassTag
import scala.util.*
import scala.annotation.tailrec
import scala.collection.mutable

inline val MOD = 998244353
extension (base: Long)
  def powMod(exp: Long): Long =
    var result = 1L
    var b = base % MOD
    var e = exp
    while e > 0 do
      if (e & 1) == 1 then
        result = result * b % MOD
      b = b * b % MOD
      e >>= 1
    result.toInt

@main def main =
  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)(_ ^ _) then
    println((1 << 20).powMod((n - 1L) * (m - 1L)))
  else
    println(0)
0