結果

問題 No.1863 Xor Sum 2...?
ユーザー tentententen
提出日時 2022-03-08 12:48:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 284 ms / 2,000 ms
コード長 1,592 bytes
コンパイル時間 5,849 ms
コンパイル使用メモリ 77,476 KB
実行使用メモリ 56,496 KB
最終ジャッジ日時 2024-07-23 12:07:58
合計ジャッジ時間 10,660 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,428 KB
testcase_01 AC 55 ms
50,112 KB
testcase_02 AC 56 ms
50,076 KB
testcase_03 AC 55 ms
50,460 KB
testcase_04 AC 56 ms
50,400 KB
testcase_05 AC 154 ms
54,600 KB
testcase_06 AC 110 ms
52,476 KB
testcase_07 AC 194 ms
55,908 KB
testcase_08 AC 178 ms
55,260 KB
testcase_09 AC 243 ms
56,020 KB
testcase_10 AC 239 ms
56,328 KB
testcase_11 AC 198 ms
54,932 KB
testcase_12 AC 178 ms
55,000 KB
testcase_13 AC 216 ms
55,996 KB
testcase_14 AC 225 ms
56,108 KB
testcase_15 AC 248 ms
56,300 KB
testcase_16 AC 220 ms
55,948 KB
testcase_17 AC 201 ms
55,820 KB
testcase_18 AC 142 ms
54,400 KB
testcase_19 AC 178 ms
55,752 KB
testcase_20 AC 206 ms
55,160 KB
testcase_21 AC 226 ms
56,076 KB
testcase_22 AC 164 ms
54,560 KB
testcase_23 AC 234 ms
56,440 KB
testcase_24 AC 261 ms
56,196 KB
testcase_25 AC 263 ms
56,284 KB
testcase_26 AC 257 ms
56,496 KB
testcase_27 AC 284 ms
56,308 KB
testcase_28 AC 259 ms
56,052 KB
testcase_29 AC 253 ms
56,392 KB
testcase_30 AC 273 ms
56,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[] values = new int[n + 1];
        for (int i = 1; i <= n; i++) {
            values[i] = sc.nextInt();
        }
        boolean[] bits = new boolean[n + 1];
        for (int i = 1; i <= n; i++) {
            bits[i] = (sc.nextInt() == 1);
        }
        long ans = 0;
        for (int i = 1; i <= n; i++) {
            int j = i;
            boolean cbit = false;
            int current = 0;
            while (j <= n && current + values[j] == (current | values[j])) {
                cbit ^= bits[j];
                current += values[j];
                if (!cbit) {
                    ans++;
                }
                j++;
            }
        }
        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