結果

問題 No.1142 XOR と XOR
ユーザー tentententen
提出日時 2021-12-07 09:43:04
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 2,245 bytes
コンパイル時間 4,975 ms
コンパイル使用メモリ 77,520 KB
実行使用メモリ 50,252 KB
最終ジャッジ日時 2024-11-08 04:00:07
合計ジャッジ時間 41,256 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
36,824 KB
testcase_01 AC 56 ms
37,108 KB
testcase_02 AC 56 ms
36,760 KB
testcase_03 TLE -
testcase_04 AC 1,900 ms
47,008 KB
testcase_05 AC 1,640 ms
46,476 KB
testcase_06 AC 1,972 ms
47,120 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 58 ms
37,128 KB
testcase_12 AC 56 ms
36,924 KB
testcase_13 AC 55 ms
36,764 KB
testcase_14 AC 1,449 ms
46,376 KB
testcase_15 AC 1,230 ms
47,292 KB
testcase_16 AC 259 ms
44,152 KB
testcase_17 AC 1,832 ms
46,016 KB
testcase_18 AC 633 ms
47,392 KB
testcase_19 AC 1,966 ms
47,908 KB
testcase_20 AC 1,296 ms
46,572 KB
testcase_21 AC 989 ms
46,432 KB
testcase_22 AC 659 ms
46,032 KB
testcase_23 AC 1,817 ms
48,900 KB
testcase_24 TLE -
testcase_25 AC 1,297 ms
46,464 KB
testcase_26 AC 1,991 ms
46,928 KB
testcase_27 AC 1,705 ms
47,484 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;
                ansA[j ^ x] += countsA[j];
                ansA[j ^ x] %= MOD;
            }
            next[x]++;
            next[x] %= MOD;
            ansA[x]++;
            ansA[x] %= MOD;
            countsA = next;
        }
        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;
                ansB[j ^ x] += countsB[j];
                ansB[j ^ x] %= MOD;
            }
            next[x]++;
            next[x] %= MOD;
            ansB[x]++;
            ansB[x] %= MOD;
            countsB = next;
        }
        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