結果

問題 No.1870 Xor Matrix
ユーザー hiro71687khiro71687k
提出日時 2024-12-31 02:09:32
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 672 bytes
コンパイル時間 4,686 ms
コンパイル使用メモリ 263,652 KB
実行使用メモリ 13,644 KB
最終ジャッジ日時 2024-12-31 02:10:09
合計ジャッジ時間 37,291 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,640 KB
testcase_01 AC 2 ms
11,296 KB
testcase_02 AC 2 ms
13,636 KB
testcase_03 TLE -
testcase_04 AC 82 ms
13,636 KB
testcase_05 TLE -
testcase_06 AC 59 ms
11,684 KB
testcase_07 AC 71 ms
11,680 KB
testcase_08 TLE -
testcase_09 AC 44 ms
11,680 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 72 ms
11,300 KB
testcase_13 AC 42 ms
11,172 KB
testcase_14 AC 80 ms
13,632 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 87 ms
10,916 KB
testcase_18 TLE -
testcase_19 AC 74 ms
6,820 KB
testcase_20 AC 55 ms
6,816 KB
testcase_21 TLE -
testcase_22 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include<atcoder/all>
using namespace atcoder;
using namespace std;
using ll= long long;
ll mod=998244353;
int main(){
    ll n,m;
    cin >> n >> m;
    vector<ll>a(n),b(m);
    ll x=0;
    for (ll i = 0; i < n; i++)
    {
        cin >> a[i];
        x^=a[i];
    }
    for (ll i = 0; i < m; i++)
    {
        cin >> b[i];
        x^=b[i];
    }
    if (x!=0)
    {
        cout << 0 << endl;
        return 0;
    }
    vector<ll>two(30,1);
    for (ll i = 0; i < 20; i++)
    {
        two[i+1]=two[i]*2;
    }
    ll ans=1;
    for (ll i = 0; i < (n-1)*(m-1)*20; i++)
    {
        ans*=2;
        ans%=mod;
    }
    cout << ans << endl;
}
0