結果

問題 No.1870 Xor Matrix
ユーザー hiikunZhiikunZ
提出日時 2022-03-11 21:47:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 1,094 bytes
コンパイル時間 2,043 ms
コンパイル使用メモリ 203,028 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-16 01:59:44
合計ジャッジ時間 4,291 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 51 ms
5,376 KB
testcase_04 AC 81 ms
5,376 KB
testcase_05 AC 52 ms
5,376 KB
testcase_06 AC 59 ms
5,376 KB
testcase_07 AC 69 ms
5,376 KB
testcase_08 AC 70 ms
5,376 KB
testcase_09 AC 44 ms
5,376 KB
testcase_10 AC 60 ms
5,376 KB
testcase_11 AC 67 ms
5,376 KB
testcase_12 AC 69 ms
5,376 KB
testcase_13 AC 41 ms
5,376 KB
testcase_14 AC 79 ms
5,376 KB
testcase_15 AC 39 ms
5,376 KB
testcase_16 AC 47 ms
5,376 KB
testcase_17 AC 85 ms
5,376 KB
testcase_18 AC 61 ms
5,376 KB
testcase_19 AC 73 ms
5,376 KB
testcase_20 AC 53 ms
5,376 KB
testcase_21 AC 33 ms
5,376 KB
testcase_22 AC 49 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
//#include<atcoder/all>
//using namespace atcoder;
using ll = long long int;
using ull = unsigned long long int;
using ld = long double;
constexpr ll MAX = 2000000000000000000;
constexpr ld PI = 3.14159265358979;
constexpr ll MOD = 998244353;//2024948111;
ld dotorad(ld K){return PI * K / 180.0;}
ld radtodo(ld K){return K * 180.0 / PI;}
mt19937 mt;
void randinit(){srand((unsigned)time(NULL));mt = mt19937(rand());}
ll modpow(ll A,ll B,ll M){
    ll r = 1,p = A;
    while(B > 0){
        if(B % 2 == 1) r = (r * p) % M;
        p = (p * p) % M;
        B /= 2;
    }
    return r;
}
int main(){
    ll N,M;
    cin >> N >> M;
    vector<ll> A(N),B(M);
    for(ll i = 0;i < N;i++) cin >> A[i];
    for(ll i = 0;i < M;i++) cin >> B[i];
    ll x = 0;
    for(ll i = 0;i < N;i++) x ^= A[i];
    for(ll i = 0;i < M;i++) x ^= B[i];
    if(x != 0) cout << 0 << endl;
    else{
        ll ans = 1;
        for(ll i = 0;i < 20;i++){
            ans *= modpow(2,(N - 1) * (M - 1),MOD);
            ans %= MOD;
        }
        cout << ans << endl;
    }
}
0