結果

問題 No.1245 ANDORゲーム(calc)
ユーザー tentententen
提出日時 2023-01-11 15:13:55
言語 Java
(openjdk 23)
結果
AC  
実行時間 508 ms / 2,000 ms
コード長 3,088 bytes
コンパイル時間 4,277 ms
コンパイル使用メモリ 84,696 KB
実行使用メモリ 53,988 KB
最終ジャッジ日時 2024-12-22 06:46:57
合計ジャッジ時間 15,221 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,824 KB
testcase_01 AC 51 ms
37,012 KB
testcase_02 AC 50 ms
36,868 KB
testcase_03 AC 47 ms
36,876 KB
testcase_04 AC 47 ms
36,696 KB
testcase_05 AC 45 ms
36,976 KB
testcase_06 AC 44 ms
36,912 KB
testcase_07 AC 109 ms
39,932 KB
testcase_08 AC 68 ms
37,980 KB
testcase_09 AC 105 ms
39,620 KB
testcase_10 AC 100 ms
39,376 KB
testcase_11 AC 508 ms
53,468 KB
testcase_12 AC 492 ms
53,628 KB
testcase_13 AC 449 ms
53,680 KB
testcase_14 AC 458 ms
53,360 KB
testcase_15 AC 457 ms
53,424 KB
testcase_16 AC 462 ms
53,320 KB
testcase_17 AC 459 ms
53,460 KB
testcase_18 AC 456 ms
53,988 KB
testcase_19 AC 448 ms
53,904 KB
testcase_20 AC 427 ms
53,520 KB
testcase_21 AC 460 ms
53,436 KB
testcase_22 AC 476 ms
53,540 KB
testcase_23 AC 506 ms
53,396 KB
testcase_24 AC 499 ms
53,396 KB
testcase_25 AC 351 ms
47,792 KB
testcase_26 AC 399 ms
49,524 KB
testcase_27 AC 426 ms
53,116 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 q = sc.nextInt();
        int[] values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
        }
        char[] opps = sc.next().toCharArray();
        long[] ons = new long[31];
        long[] ofs = new long[31];
        for (int i = 0; i < 31; i++) {
            boolean tValue = true;
            boolean fValue = false;
            for (int j = 0; j < n; j++) {
                if (opps[j] == '0') {
                    if (tValue && !((values[j] & (1 << i)) > 0)) {
                        tValue = false;
                        ons[i] += (1 << i);
                    }
                    if (fValue && !((values[j] & (1 << i)) > 0)) {
                        fValue = false;
                        ofs[i] += (1 << i);
                    }
                } else {
                    if (!tValue && ((values[j] & (1 << i)) > 0)) {
                        tValue = true;
                        ons[i] += (1 << i);
                    }
                    if (!fValue && ((values[j] & (1 << i)) > 0)) {
                        fValue = true;
                        ofs[i] += (1 << i);
                    }
                }
            }
        }
        StringBuilder sb = new StringBuilder();
        while (q-- > 0) {
            int x = sc.nextInt();
            long ans = 0;
            for (int i = 0; i < 31; i++) {
                if ((x & (1 << i)) == 0) {
                    ans += ofs[i];
                } else {
                    ans += ons[i];
                }
            }
            sb.append(ans).append("\n");
        }
        System.out.print(sb);
    }
}

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