結果

問題 No.1142 XOR と XOR
ユーザー tentententen
提出日時 2021-12-07 09:30:28
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 2,245 bytes
コンパイル時間 2,162 ms
コンパイル使用メモリ 77,744 KB
実行使用メモリ 63,328 KB
最終ジャッジ日時 2024-07-07 10:22:25
合計ジャッジ時間 39,279 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,000 KB
testcase_01 AC 56 ms
37,092 KB
testcase_02 AC 56 ms
36,900 KB
testcase_03 TLE -
testcase_04 AC 1,725 ms
50,552 KB
testcase_05 AC 1,623 ms
49,972 KB
testcase_06 AC 1,745 ms
50,180 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 54 ms
36,920 KB
testcase_12 AC 55 ms
37,108 KB
testcase_13 AC 54 ms
36,764 KB
testcase_14 AC 1,213 ms
46,768 KB
testcase_15 AC 1,387 ms
50,224 KB
testcase_16 AC 387 ms
48,516 KB
testcase_17 AC 1,573 ms
46,272 KB
testcase_18 AC 691 ms
48,124 KB
testcase_19 AC 1,919 ms
50,572 KB
testcase_20 AC 1,229 ms
46,636 KB
testcase_21 AC 916 ms
46,284 KB
testcase_22 AC 826 ms
49,592 KB
testcase_23 AC 1,875 ms
52,792 KB
testcase_24 AC 1,802 ms
47,496 KB
testcase_25 AC 1,444 ms
49,820 KB
testcase_26 AC 1,792 ms
47,120 KB
testcase_27 AC 1,612 ms
50,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int m = sc.nextInt();
        int k = sc.nextInt();
        int[] countsA = new int[1024];
        int[] ansA = new int[1024];
        for (int i = 0; i < n; i++) {
            int[] next = new int[1024];
            int x = sc.nextInt();
            for (int j = 0; j < 1024; j++) {
                next[j ^ x] += countsA[j];
                next[j ^ x] %= MOD;
            }
            next[x]++;
            next[x] %= MOD;
            countsA = next;
            for (int j = 0; j < 1024; j++) {
                ansA[j] += countsA[j];
                ansA[j] %= MOD;
            }
        }
        int[] countsB = new int[1024];
        int[] ansB = new int[1024];
        for (int i = 0; i < m; i++) {
            int[] next = new int[1024];
            int x = sc.nextInt();
            for (int j = 0; j < 1024; j++) {
                next[j ^ x] += countsB[j];
                next[j ^ x] %= MOD;
            }
            next[x]++;
            next[x] %= MOD;
            countsB = next;
            for (int j = 0; j < 1024; j++) {
                ansB[j] += countsB[j];
                ansB[j] %= MOD;
            }
        }
        long ans = 0;
        for (int i = 0; i < 1024; i++) {
            ans += (long)ansA[i] * ansB[i ^ k];
            ans %= MOD;
        }
        System.out.println(ans);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0