結果
問題 | No.1245 ANDORゲーム(calc) |
ユーザー | tenten |
提出日時 | 2023-03-22 14:56:41 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 585 ms / 2,000 ms |
コード長 | 2,766 bytes |
コンパイル時間 | 2,704 ms |
コンパイル使用メモリ | 91,328 KB |
実行使用メモリ | 67,416 KB |
最終ジャッジ日時 | 2024-09-18 14:54:07 |
合計ジャッジ時間 | 15,089 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 58 ms
49,868 KB |
testcase_01 | AC | 56 ms
50,436 KB |
testcase_02 | AC | 56 ms
50,092 KB |
testcase_03 | AC | 58 ms
50,244 KB |
testcase_04 | AC | 56 ms
50,228 KB |
testcase_05 | AC | 57 ms
50,156 KB |
testcase_06 | AC | 59 ms
50,076 KB |
testcase_07 | AC | 121 ms
52,328 KB |
testcase_08 | AC | 94 ms
51,352 KB |
testcase_09 | AC | 127 ms
52,072 KB |
testcase_10 | AC | 132 ms
54,052 KB |
testcase_11 | AC | 542 ms
64,464 KB |
testcase_12 | AC | 512 ms
64,520 KB |
testcase_13 | AC | 549 ms
64,640 KB |
testcase_14 | AC | 571 ms
67,200 KB |
testcase_15 | AC | 585 ms
67,392 KB |
testcase_16 | AC | 540 ms
64,344 KB |
testcase_17 | AC | 504 ms
65,084 KB |
testcase_18 | AC | 491 ms
64,096 KB |
testcase_19 | AC | 560 ms
65,168 KB |
testcase_20 | AC | 577 ms
66,860 KB |
testcase_21 | AC | 472 ms
64,216 KB |
testcase_22 | AC | 489 ms
64,364 KB |
testcase_23 | AC | 496 ms
64,364 KB |
testcase_24 | AC | 557 ms
67,416 KB |
testcase_25 | AC | 374 ms
57,628 KB |
testcase_26 | AC | 430 ms
60,208 KB |
testcase_27 | AC | 521 ms
64,508 KB |
ソースコード
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[] inputs = new int[n]; for (int i = 0; i < n; i++) { inputs[i] = sc.nextInt(); } char[] andor = sc.next().toCharArray(); long[][] values = new long[2][31]; for (int i = 0; i <= 30; i++) { boolean[] current = new boolean[]{false, true}; for (int j = 0; j < n; j++) { for (int k = 0; k < 2; k++) { if (andor[j] == '0') { if (inputs[j] % 2 == 0 && current[k]) { current[k] = false; values[k][i] += (1 << i); } } else { if (inputs[j] % 2 == 1 && !current[k]) { current[k] = true; values[k][i] += (1 << i); } } } inputs[j] >>= 1; } } StringBuilder sb = new StringBuilder(); while (q-- > 0) { int x = sc.nextInt(); long ans = 0; for (int i = 0; i <= 30; i++) { ans += values[x % 2][i]; x >>= 1; } 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(); } }