結果

問題 No.1245 ANDORゲーム(calc)
ユーザー tentententen
提出日時 2020-10-05 09:08:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,404 ms / 2,000 ms
コード長 1,473 bytes
コンパイル時間 2,525 ms
コンパイル使用メモリ 79,420 KB
実行使用メモリ 63,884 KB
最終ジャッジ日時 2024-07-19 19:20:26
合計ジャッジ時間 29,164 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,308 KB
testcase_01 AC 129 ms
41,376 KB
testcase_02 AC 131 ms
40,992 KB
testcase_03 AC 118 ms
40,060 KB
testcase_04 AC 130 ms
41,108 KB
testcase_05 AC 127 ms
41,172 KB
testcase_06 AC 131 ms
41,176 KB
testcase_07 AC 255 ms
46,436 KB
testcase_08 AC 206 ms
42,912 KB
testcase_09 AC 237 ms
45,604 KB
testcase_10 AC 252 ms
45,880 KB
testcase_11 AC 1,316 ms
63,436 KB
testcase_12 AC 1,259 ms
63,620 KB
testcase_13 AC 1,237 ms
63,740 KB
testcase_14 AC 1,312 ms
63,848 KB
testcase_15 AC 1,212 ms
63,588 KB
testcase_16 AC 1,278 ms
63,676 KB
testcase_17 AC 1,314 ms
63,644 KB
testcase_18 AC 1,245 ms
63,620 KB
testcase_19 AC 1,404 ms
63,884 KB
testcase_20 AC 1,299 ms
63,708 KB
testcase_21 AC 1,290 ms
63,812 KB
testcase_22 AC 1,311 ms
63,612 KB
testcase_23 AC 1,130 ms
63,252 KB
testcase_24 AC 1,218 ms
63,624 KB
testcase_25 AC 1,027 ms
51,100 KB
testcase_26 AC 986 ms
54,732 KB
testcase_27 AC 1,218 ms
63,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int q = sc.nextInt();
        long[][] dp = new long[31][2];
        int[][] values = new int[31][2];
        for (int i = 0; i < 31; i++) {
            values[i][1] = 1;
        }
        int[] vArr = new int[n];
        for (int i = 0; i < n; i++) {
            vArr[i] = sc.nextInt();
        }
        char[] arr = sc.next().toCharArray();
        for (int i = 0; i < n; i++) {
            int a = vArr[i];
            for (int j = 0; j < 31; j++) {
                int bit = a % 2;
                a /= 2;
                for (int k = 0; k < 2; k++) {
                    if (bit == 1 && values[j][k] == 0 && arr[i] == '1') {
                        values[j][k] = 1;
                        dp[j][k] += (1 << j);
                    } else if (bit == 0 && values[j][k] == 1 && arr[i] == '0') {
                        values[j][k] = 0;
                        dp[j][k] += (1 << j);
                    }
                }
            }
        }
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < q; i++) {
            int t = sc.nextInt();
            long ans = 0;
            for (int j = 0; j < 31; j++) {
                ans += dp[j][t % 2];
                t /= 2;
            }
            sb.append(ans).append("\n");
        }
        System.out.print(sb);
    }
}
0