結果
問題 | No.1870 Xor Matrix |
ユーザー | shobonvip |
提出日時 | 2022-03-11 23:10:20 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 669 bytes |
コンパイル時間 | 319 ms |
コンパイル使用メモリ | 81,792 KB |
実行使用メモリ | 149,780 KB |
最終ジャッジ日時 | 2024-09-16 03:32:45 |
合計ジャッジ時間 | 7,691 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
51,840 KB |
testcase_01 | AC | 38 ms
52,096 KB |
testcase_02 | AC | 42 ms
51,968 KB |
testcase_03 | AC | 264 ms
114,804 KB |
testcase_04 | WA | - |
testcase_05 | AC | 263 ms
114,188 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 352 ms
135,820 KB |
testcase_09 | WA | - |
testcase_10 | AC | 318 ms
122,280 KB |
testcase_11 | AC | 339 ms
135,072 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 218 ms
104,456 KB |
testcase_16 | AC | 245 ms
110,280 KB |
testcase_17 | WA | - |
testcase_18 | AC | 317 ms
123,396 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 185 ms
98,452 KB |
testcase_22 | AC | 261 ms
111,160 KB |
ソースコード
n,m = map(int,input().split()) a = list(map(int,input().split())) b = list(map(int,input().split())) mod = 998244353 ar = [[0 for i in range(20)] for j in range(n)] br = [[0 for i in range(20)] for j in range(m)] for i in range(n): for j in range(20): ar[i][j] = (a[i] >> j) & 1 for i in range(m): for j in range(20): br[i][j] = (b[i] >> j) & 1 ans = 1 for i in range(20): atmp = 0 btmp = 0 for j in range(n): atmp += ar[j][i] for j in range(m): btmp += br[j][i] #print(atmp, btmp, n-atmp, m-btmp) if atmp == 0 or btmp == 0 or n-atmp == 0 or m-btmp == 0: if (atmp + btmp) % 2 == 1: ans = 0 ans = ans * pow(2, n*m-n-m+1, mod) % mod print(ans)