結果

問題 No.1142 XOR と XOR
ユーザー face4face4
提出日時 2020-08-10 12:04:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 520 ms / 2,000 ms
コード長 1,679 bytes
コンパイル時間 2,237 ms
コンパイル使用メモリ 75,932 KB
実行使用メモリ 73,276 KB
最終ジャッジ日時 2024-11-08 03:49:05
合計ジャッジ時間 12,151 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
38,608 KB
testcase_01 AC 101 ms
38,688 KB
testcase_02 AC 97 ms
38,880 KB
testcase_03 AC 520 ms
73,276 KB
testcase_04 AC 400 ms
65,328 KB
testcase_05 AC 338 ms
54,648 KB
testcase_06 AC 367 ms
64,572 KB
testcase_07 AC 384 ms
68,924 KB
testcase_08 AC 448 ms
71,304 KB
testcase_09 AC 448 ms
71,504 KB
testcase_10 AC 453 ms
71,576 KB
testcase_11 AC 96 ms
38,864 KB
testcase_12 AC 94 ms
38,876 KB
testcase_13 AC 93 ms
38,528 KB
testcase_14 AC 306 ms
56,224 KB
testcase_15 AC 295 ms
52,508 KB
testcase_16 AC 158 ms
40,372 KB
testcase_17 AC 326 ms
56,376 KB
testcase_18 AC 168 ms
45,604 KB
testcase_19 AC 394 ms
57,560 KB
testcase_20 AC 306 ms
55,168 KB
testcase_21 AC 230 ms
49,188 KB
testcase_22 AC 197 ms
45,388 KB
testcase_23 AC 384 ms
58,200 KB
testcase_24 AC 376 ms
64,856 KB
testcase_25 AC 306 ms
56,140 KB
testcase_26 AC 391 ms
56,932 KB
testcase_27 AC 352 ms
56,472 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];
            acca[tmp]++;
        }
        tmp = 0;
        for(int i = 0; i < m; i++){
            tmp ^= b[i];
            accb[tmp]++;
        }
        for(int i = 0; i < 1<<10; i++){
            ax[0] += (int)((long)acca[i]*(acca[i]-1)/2%mod);
            ax[0] %= mod;
            bx[0] += (int)((long)accb[i]*(accb[i]-1)/2%mod);
            bx[0] %= mod;
            for(int j = i+1; j < 1<<10; j++){
                ax[i^j] += (long)acca[i]*acca[j]%mod;
                ax[i^j] %= mod;
                bx[i^j] += (long)accb[i]*accb[j]%mod;
                bx[i^j] %= mod;
            }
        }
        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