結果

問題 No.1142 XOR と XOR
ユーザー betrue12betrue12
提出日時 2020-09-01 02:18:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 898 ms / 2,000 ms
コード長 700 bytes
コンパイル時間 2,263 ms
コンパイル使用メモリ 200,484 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-08 03:50:19
合計ジャッジ時間 16,257 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 898 ms
5,248 KB
testcase_04 AC 695 ms
5,248 KB
testcase_05 AC 567 ms
5,248 KB
testcase_06 AC 718 ms
5,248 KB
testcase_07 AC 855 ms
5,248 KB
testcase_08 AC 884 ms
5,248 KB
testcase_09 AC 881 ms
5,248 KB
testcase_10 AC 879 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 473 ms
5,248 KB
testcase_15 AC 461 ms
5,248 KB
testcase_16 AC 39 ms
5,248 KB
testcase_17 AC 647 ms
5,248 KB
testcase_18 AC 144 ms
5,248 KB
testcase_19 AC 714 ms
5,248 KB
testcase_20 AC 457 ms
5,248 KB
testcase_21 AC 283 ms
5,248 KB
testcase_22 AC 159 ms
5,248 KB
testcase_23 AC 666 ms
5,248 KB
testcase_24 AC 753 ms
5,248 KB
testcase_25 AC 432 ms
5,248 KB
testcase_26 AC 703 ms
5,248 KB
testcase_27 AC 564 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

const int64_t MOD = 1e9+7;
void add(int64_t& a, int64_t b){
    a = (a+b) % MOD;
}
void mul(int64_t& a, int64_t b){
    a = a*b % MOD;
}


int main(){
    int N[2], K;
    cin >> N[0] >> N[1] >> K;
    static int64_t num[2][1024], sum[2][1024];
    for(int t=0; t<2; t++){
        int s = 0;
        num[t][0] = 1;
        for(int i=0; i<N[t]; i++){
            int a;
            cin >> a;
            s ^= a;
            for(int k=0; k<1024; k++) add(sum[t][k^s], num[t][k]);
            add(num[t][s], 1);
        }
    }

    int64_t ans = 0;
    for(int k=0; k<1024; k++) add(ans, sum[0][k] * sum[1][k^K]);
    cout << ans << endl;
    return 0;
}
0