結果

問題 No.1870 Xor Matrix
ユーザー hiro71687khiro71687k
提出日時 2024-12-31 02:11:04
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 753 bytes
コンパイル時間 4,599 ms
コンパイル使用メモリ 262,384 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-31 02:11:11
合計ジャッジ時間 7,062 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 51 ms
6,820 KB
testcase_04 AC 83 ms
6,816 KB
testcase_05 AC 52 ms
6,820 KB
testcase_06 AC 60 ms
6,816 KB
testcase_07 AC 71 ms
6,816 KB
testcase_08 AC 72 ms
6,820 KB
testcase_09 AC 44 ms
6,820 KB
testcase_10 AC 62 ms
6,816 KB
testcase_11 AC 68 ms
6,820 KB
testcase_12 AC 71 ms
6,820 KB
testcase_13 AC 42 ms
6,816 KB
testcase_14 AC 81 ms
6,820 KB
testcase_15 AC 40 ms
6,820 KB
testcase_16 AC 47 ms
6,816 KB
testcase_17 AC 86 ms
6,820 KB
testcase_18 AC 63 ms
6,816 KB
testcase_19 AC 73 ms
6,816 KB
testcase_20 AC 55 ms
6,820 KB
testcase_21 AC 34 ms
6,820 KB
testcase_22 AC 50 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include<atcoder/all>
using namespace atcoder;
using namespace std;
using ll= long long;
ll mod=998244353;
ll modpow(ll x, ll n) {
  x = x%mod;
  if(n==0) return 1;  //再帰の終了条件

  else if(n%2==1) {
    return (x*modpow(x, n-1))%mod;  //nが奇数ならnを1ずらす
  }
  else return modpow((x*x)%mod, n/2)%mod;  //nが偶数ならnが半分になる
}
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;
    }
    cout << modpow(2,(n-1)*(m-1)*20) << endl;
}
0