結果
問題 | No.1142 XOR と XOR |
ユーザー | face4 |
提出日時 | 2020-08-10 11:49:02 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,548 bytes |
コンパイル時間 | 2,205 ms |
コンパイル使用メモリ | 76,348 KB |
実行使用メモリ | 85,852 KB |
最終ジャッジ日時 | 2024-10-06 21:46:58 |
合計ジャッジ時間 | 33,995 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 53 ms
36,708 KB |
testcase_03 | WA | - |
testcase_04 | AC | 1,519 ms
65,516 KB |
testcase_05 | AC | 1,286 ms
54,740 KB |
testcase_06 | AC | 1,603 ms
64,260 KB |
testcase_07 | WA | - |
testcase_08 | AC | 1,978 ms
71,604 KB |
testcase_09 | AC | 1,924 ms
71,380 KB |
testcase_10 | AC | 1,901 ms
72,376 KB |
testcase_11 | AC | 53 ms
36,840 KB |
testcase_12 | AC | 53 ms
36,632 KB |
testcase_13 | AC | 54 ms
36,456 KB |
testcase_14 | AC | 1,112 ms
55,712 KB |
testcase_15 | AC | 1,046 ms
52,836 KB |
testcase_16 | AC | 209 ms
40,396 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 1,152 ms
55,064 KB |
testcase_21 | AC | 697 ms
49,996 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 1,667 ms
65,988 KB |
testcase_25 | AC | 1,009 ms
56,484 KB |
testcase_26 | AC | 1,607 ms
57,020 KB |
testcase_27 | AC | 1,342 ms
56,440 KB |
ソースコード
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; } if(k == 0){ ans = (ans+mod-1)%mod; } System.out.println(ans); } }