結果

問題 No.1210 XOR Grid
ユーザー simasima_71simasima_71
提出日時 2020-07-28 23:15:01
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 1,045 bytes
コンパイル時間 1,085 ms
コンパイル使用メモリ 111,164 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-28 21:06:29
合計ジャッジ時間 7,215 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 57
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <utility>
#include <tuple>
#include <cstdint>
#include <cstdio>
#include <map>
#include <queue>
#include <set>
#include <stack>
#include <deque>
#include <unordered_map>
#include <unordered_set>
#include <bitset>
#include <cctype>
#include <functional>
#include <ctime>
#include <fstream>
#include <cmath>
#include <limits>
#include <numeric>
#include <type_traits>
#include <iomanip>
#include <float.h>
#include <math.h>
#include <random>
using namespace std;
using ll = long long;

long long modpow(long long a, long long n, long long mod) {
    long long res = 1;
    while (n > 0) {
        if (n & 1) res = res * a % mod;
        a = a * a % mod;
        n >>= 1;
    }
    return res;
}

int main() {
    ll n, m, x;
    cin >> n >> m >> x;
    ll r = 0;
    for (int i = 0; i < n + m; i++) {
        ll a;
        cin >> a;
        r ^= a;
    }
    if (r != 0)cout << 0 << endl;
    else cout << modpow(2, (n - 1) * (m - 1) * x, 1000000007) << endl;
}
0