結果

問題 No.1245 ANDORゲーム(calc)
ユーザー ks2mks2m
提出日時 2020-10-02 22:51:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 620 ms / 2,000 ms
コード長 1,480 bytes
コンパイル時間 2,147 ms
コンパイル使用メモリ 76,908 KB
実行使用メモリ 64,992 KB
最終ジャッジ日時 2024-07-17 22:51:26
合計ジャッジ時間 15,188 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,708 KB
testcase_01 AC 53 ms
36,572 KB
testcase_02 AC 53 ms
37,132 KB
testcase_03 AC 54 ms
36,932 KB
testcase_04 AC 54 ms
36,584 KB
testcase_05 AC 53 ms
36,808 KB
testcase_06 AC 53 ms
36,796 KB
testcase_07 AC 112 ms
39,500 KB
testcase_08 AC 76 ms
38,116 KB
testcase_09 AC 124 ms
39,324 KB
testcase_10 AC 124 ms
39,460 KB
testcase_11 AC 550 ms
55,424 KB
testcase_12 AC 561 ms
56,696 KB
testcase_13 AC 620 ms
59,656 KB
testcase_14 AC 566 ms
56,568 KB
testcase_15 AC 551 ms
57,104 KB
testcase_16 AC 546 ms
55,732 KB
testcase_17 AC 551 ms
56,496 KB
testcase_18 AC 560 ms
58,008 KB
testcase_19 AC 548 ms
57,220 KB
testcase_20 AC 556 ms
56,476 KB
testcase_21 AC 570 ms
57,276 KB
testcase_22 AC 582 ms
59,472 KB
testcase_23 AC 569 ms
55,836 KB
testcase_24 AC 594 ms
59,692 KB
testcase_25 AC 528 ms
57,916 KB
testcase_26 AC 556 ms
58,692 KB
testcase_27 AC 608 ms
64,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int q = Integer.parseInt(sa[1]);

		sa = br.readLine().split(" ");
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(sa[i]);
		}

		char[] s = br.readLine().toCharArray();

		sa = br.readLine().split(" ");
		int[] t = new int[q];
		for (int i = 0; i < q; i++) {
			t[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		long[] dp0 = new long[31];
		long[] dp1 = new long[31];
		int now0 = 0;
		int now1 = Integer.MAX_VALUE;
		for (int i = 0; i < n; i++) {
			int next0 = 0;
			int next1 = 0;
			if (s[i] == '0') {
				next0 = now0 & a[i];
				next1 = now1 & a[i];
			} else {
				next0 = now0 | a[i];
				next1 = now1 | a[i];
			}
			for (int j = 0; j < 31; j++) {
				int c = 1 << j;
				if ((now0 & c) != (next0 & c)) {
					dp0[j] += c;
				}
				if ((now1 & c) != (next1 & c)) {
					dp1[j] += c;
				}
			}
			now0 = next0;
			now1 = next1;
		}

		PrintWriter pw = new PrintWriter(System.out);
		for (int i = 0; i < q; i++) {
			long ans = 0;
			for (int j = 0; j < 31; j++) {
				if ((t[i] >> j & 1) == 0) {
					ans += dp0[j];
				} else {
					ans += dp1[j];
				}
			}
			pw.println(ans);
		}
		pw.flush();
	}
}
0