結果

問題 No.1863 Xor Sum 2...?
ユーザー tentententen
提出日時 2023-01-17 16:49:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 266 ms / 2,000 ms
コード長 2,161 bytes
コンパイル時間 2,752 ms
コンパイル使用メモリ 89,740 KB
実行使用メモリ 46,492 KB
最終ジャッジ日時 2024-06-10 20:06:05
合計ジャッジ時間 10,575 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
37,128 KB
testcase_01 AC 49 ms
37,200 KB
testcase_02 AC 50 ms
37,120 KB
testcase_03 AC 50 ms
37,080 KB
testcase_04 AC 49 ms
37,188 KB
testcase_05 AC 143 ms
42,176 KB
testcase_06 AC 110 ms
40,436 KB
testcase_07 AC 186 ms
44,120 KB
testcase_08 AC 170 ms
44,508 KB
testcase_09 AC 225 ms
45,432 KB
testcase_10 AC 231 ms
45,516 KB
testcase_11 AC 188 ms
44,432 KB
testcase_12 AC 175 ms
44,092 KB
testcase_13 AC 194 ms
45,928 KB
testcase_14 AC 219 ms
45,684 KB
testcase_15 AC 232 ms
45,600 KB
testcase_16 AC 215 ms
45,568 KB
testcase_17 AC 192 ms
44,728 KB
testcase_18 AC 129 ms
41,280 KB
testcase_19 AC 161 ms
44,244 KB
testcase_20 AC 210 ms
44,580 KB
testcase_21 AC 216 ms
45,756 KB
testcase_22 AC 151 ms
42,592 KB
testcase_23 AC 255 ms
46,200 KB
testcase_24 AC 256 ms
46,260 KB
testcase_25 AC 255 ms
46,492 KB
testcase_26 AC 266 ms
46,492 KB
testcase_27 AC 261 ms
46,408 KB
testcase_28 AC 256 ms
46,236 KB
testcase_29 AC 264 ms
46,432 KB
testcase_30 AC 265 ms
46,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[] values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
        }
        boolean[] tf = new boolean[n];
        for (int i = 0; i < n; i++) {
            tf[i] = (sc.nextInt() == 1);
        }
        int ans = 0;
        for (int i = 0; i < n; i++) {
            int current = 0;
            boolean disable = false;
            for (int j = i; j < n; j++) {
                if ((current & values[j]) > 0) {
                    break;
                }
                current |= values[j];
                disable ^= tf[j];
                if (!disable) {
                    ans++;
                }
            }
        }
        System.out.println(ans);
    }
}

class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0