結果

問題 No.1142 XOR と XOR
ユーザー face4face4
提出日時 2020-08-10 11:50:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,996 ms / 2,000 ms
コード長 1,483 bytes
コンパイル時間 3,287 ms
コンパイル使用メモリ 76,000 KB
実行使用メモリ 72,296 KB
最終ジャッジ日時 2024-11-08 03:48:32
合計ジャッジ時間 35,655 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,680 KB
testcase_01 AC 54 ms
37,008 KB
testcase_02 AC 53 ms
37,048 KB
testcase_03 AC 1,996 ms
72,296 KB
testcase_04 AC 1,567 ms
65,548 KB
testcase_05 AC 1,337 ms
55,528 KB
testcase_06 AC 1,622 ms
64,676 KB
testcase_07 AC 1,838 ms
68,620 KB
testcase_08 AC 1,952 ms
71,356 KB
testcase_09 AC 1,947 ms
71,780 KB
testcase_10 AC 1,922 ms
71,608 KB
testcase_11 AC 55 ms
36,576 KB
testcase_12 AC 54 ms
37,064 KB
testcase_13 AC 54 ms
36,688 KB
testcase_14 AC 1,128 ms
55,976 KB
testcase_15 AC 1,056 ms
52,412 KB
testcase_16 AC 215 ms
40,624 KB
testcase_17 AC 1,477 ms
57,160 KB
testcase_18 AC 433 ms
45,964 KB
testcase_19 AC 1,612 ms
57,816 KB
testcase_20 AC 1,099 ms
55,236 KB
testcase_21 AC 687 ms
49,008 KB
testcase_22 AC 482 ms
46,636 KB
testcase_23 AC 1,537 ms
58,324 KB
testcase_24 AC 1,650 ms
66,252 KB
testcase_25 AC 1,027 ms
56,312 KB
testcase_26 AC 1,617 ms
57,156 KB
testcase_27 AC 1,339 ms
56,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

public class Main {
    static int mod = 1000000007;
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] line = br.readLine().split(" ");
        int n = Integer.parseInt(line[0]);
        int m = Integer.parseInt(line[1]);
        int k = Integer.parseInt(line[2]);
        int a[] = new int[n], b[] = new int[m];
        line = br.readLine().split(" ");
        for(int i = 0; i < n; i++)  a[i] = Integer.parseInt(line[i]);
        line = br.readLine().split(" ");
        for(int i = 0; i < m; i++)  b[i] = Integer.parseInt(line[i]);
        int acca[] = new int[1<<10], ax[] = new int[1<<10], accb[] = new int[1<<10], bx[] = new int[1<<10];
        acca[0] = accb[0] = 1;
        int tmp = 0;
        for(int i = 0; i < n; i++){
            tmp ^= a[i];
            for(int j = 0; j < 1<<10; j++){
                ax[j^tmp] += acca[j];
                ax[j^tmp] %= mod;
            }
            acca[tmp]++;
        }
        tmp = 0;
        for(int i = 0; i < m; i++){
            tmp ^= b[i];
            for(int j = 0; j < 1<<10; j++){
                bx[j^tmp] += accb[j];
                bx[j^tmp] %= mod;
            }
            accb[tmp]++;
        }
        long ans = 0;
        for(int i = 0; i < 1<<10; i++){
            ans += (long)(ax[i]) * bx[k^i] % mod;
            ans %= mod;
        }
        System.out.println(ans);
    }
}
0