結果

問題 No.1245 ANDORゲーム(calc)
ユーザー CuriousFairy315CuriousFairy315
提出日時 2020-10-02 22:17:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,546 ms / 2,000 ms
コード長 1,080 bytes
コンパイル時間 1,869 ms
コンパイル使用メモリ 77,200 KB
実行使用メモリ 77,544 KB
最終ジャッジ日時 2024-07-17 21:39:18
合計ジャッジ時間 30,928 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
54,224 KB
testcase_01 AC 118 ms
53,880 KB
testcase_02 AC 115 ms
54,248 KB
testcase_03 AC 115 ms
54,156 KB
testcase_04 AC 118 ms
54,232 KB
testcase_05 AC 118 ms
54,188 KB
testcase_06 AC 122 ms
54,220 KB
testcase_07 AC 275 ms
58,328 KB
testcase_08 AC 211 ms
56,816 KB
testcase_09 AC 245 ms
57,988 KB
testcase_10 AC 277 ms
58,900 KB
testcase_11 AC 1,455 ms
77,496 KB
testcase_12 AC 1,473 ms
71,136 KB
testcase_13 AC 1,544 ms
77,176 KB
testcase_14 AC 1,512 ms
77,544 KB
testcase_15 AC 1,537 ms
71,048 KB
testcase_16 AC 1,404 ms
70,716 KB
testcase_17 AC 1,475 ms
70,648 KB
testcase_18 AC 1,480 ms
77,360 KB
testcase_19 AC 1,542 ms
77,372 KB
testcase_20 AC 1,502 ms
77,332 KB
testcase_21 AC 1,485 ms
70,464 KB
testcase_22 AC 1,546 ms
77,156 KB
testcase_23 AC 1,373 ms
69,084 KB
testcase_24 AC 1,464 ms
70,596 KB
testcase_25 AC 1,268 ms
67,316 KB
testcase_26 AC 1,296 ms
68,136 KB
testcase_27 AC 1,427 ms
71,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import static java.lang.System.*;

public class Main {

	public static void main(String[] args) {
		try (Scanner sc = new Scanner(in)) {
			int N = sc.nextInt(), Q = sc.nextInt();
			int[] A = new int[N];
			for (int i = 0;i < N;++ i) A[i] = sc.nextInt();
			char[] S = sc.next().toCharArray();
			long[] bit0 = new long[30], bit1 = new long[30];
			for (int i = 0;i < 30;++ i) {
				int b0 = 0, b1 = 1;
				for (int j = 0;j < N;++ j) {
					if (S[j] == '0') {
						if ((A[j] >> i & 1) == 0 && b0 == 1) bit0[i] += 1 << i;
						if ((A[j] >> i & 1) == 0 && b1 == 1) bit1[i] += 1 << i;
						b0 &= A[j] >> i & 1;
						b1 &= A[j] >> i & 1;
					} else {
						if ((A[j] >> i & 1) != 0 && b0 == 0) bit0[i] += 1 << i;
						if ((A[j] >> i & 1) != 0 && b1 == 0) bit1[i] += 1 << i;
						b0 |= A[j] >> i & 1;
						b1 |= A[j] >> i & 1;
					}
				}
			}
			while(Q --> 0) {
				int t = sc.nextInt();
				long ans = 0;
				for (int i = 0;i < 30;++ i) {
					if ((1 << i & t) == 0) ans += bit0[i];
					else ans += bit1[i];
				}
				out.println(ans);
			}
		}
	}

}
0