結果

問題 No.1245 ANDORゲーム(calc)
ユーザー tentententen
提出日時 2024-07-22 18:31:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 567 ms / 2,000 ms
コード長 2,304 bytes
コンパイル時間 2,328 ms
コンパイル使用メモリ 94,936 KB
実行使用メモリ 68,824 KB
最終ジャッジ日時 2024-07-22 18:31:47
合計ジャッジ時間 14,661 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
50,952 KB
testcase_01 AC 57 ms
50,884 KB
testcase_02 AC 59 ms
51,056 KB
testcase_03 AC 57 ms
50,768 KB
testcase_04 AC 59 ms
50,772 KB
testcase_05 AC 70 ms
50,992 KB
testcase_06 AC 57 ms
50,924 KB
testcase_07 AC 134 ms
52,976 KB
testcase_08 AC 96 ms
51,620 KB
testcase_09 AC 136 ms
53,904 KB
testcase_10 AC 134 ms
54,768 KB
testcase_11 AC 474 ms
66,132 KB
testcase_12 AC 561 ms
66,704 KB
testcase_13 AC 473 ms
65,388 KB
testcase_14 AC 564 ms
66,508 KB
testcase_15 AC 541 ms
66,908 KB
testcase_16 AC 553 ms
65,924 KB
testcase_17 AC 523 ms
66,384 KB
testcase_18 AC 547 ms
65,380 KB
testcase_19 AC 517 ms
66,360 KB
testcase_20 AC 545 ms
67,612 KB
testcase_21 AC 529 ms
67,476 KB
testcase_22 AC 539 ms
66,040 KB
testcase_23 AC 540 ms
67,592 KB
testcase_24 AC 567 ms
68,824 KB
testcase_25 AC 369 ms
62,760 KB
testcase_26 AC 421 ms
65,368 KB
testcase_27 AC 498 ms
66,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int q = sc.nextInt();
        int[] values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
        }
        char[] inputs = sc.next().toCharArray();
        long[][] scores = new long[30][2];
        boolean[][] current = new boolean[2][30];
        Arrays.fill(current[1], true);
        for (int i = 0; i < n; i++) {
            boolean isAnd = inputs[i] == '0';
            for (int j = 0; j < 30; j++) {
                boolean isTrue = (values[i] & (1 << j)) > 0;
                for (int k = 0; k < 2; k++) {
                    if ((isAnd && current[k][j] && !isTrue) || (!isAnd && !current[k][j] && isTrue)) {
                        scores[j][k] += (1 << j);
                        current[k][j] ^= true;
                    }
                }
            }
        }
        String result = IntStream.range(0, q).mapToObj(b -> {
            int x = sc.nextInt();
            long ans = 0;
            for (int i = 0; i < 30; i++) {
                ans += scores[i][x % 2];
                x >>= 1;
            }
            return String.valueOf(ans);
        }).collect(Collectors.joining("\n"));
        System.out.println(result);
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0