結果

問題 No.2071 Shift and OR
ユーザー tentententen
提出日時 2023-03-29 19:15:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 2,323 bytes
コンパイル時間 4,459 ms
コンパイル使用メモリ 91,260 KB
実行使用メモリ 52,440 KB
最終ジャッジ日時 2024-09-21 10:46:30
合計ジャッジ時間 9,651 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
52,232 KB
testcase_01 AC 114 ms
51,932 KB
testcase_02 AC 132 ms
52,396 KB
testcase_03 AC 123 ms
52,228 KB
testcase_04 AC 121 ms
52,236 KB
testcase_05 AC 119 ms
52,360 KB
testcase_06 AC 119 ms
52,092 KB
testcase_07 AC 129 ms
52,288 KB
testcase_08 AC 121 ms
52,192 KB
testcase_09 AC 130 ms
52,092 KB
testcase_10 AC 138 ms
52,260 KB
testcase_11 AC 124 ms
52,260 KB
testcase_12 AC 133 ms
52,440 KB
testcase_13 AC 134 ms
52,344 KB
testcase_14 AC 86 ms
51,940 KB
testcase_15 AC 120 ms
51,888 KB
testcase_16 AC 126 ms
51,888 KB
testcase_17 AC 125 ms
51,840 KB
testcase_18 AC 120 ms
52,312 KB
testcase_19 AC 121 ms
52,120 KB
testcase_20 AC 122 ms
52,124 KB
testcase_21 AC 126 ms
52,408 KB
testcase_22 AC 121 ms
52,320 KB
testcase_23 AC 55 ms
49,784 KB
testcase_24 AC 55 ms
50,048 KB
testcase_25 AC 55 ms
49,948 KB
testcase_26 AC 55 ms
50,456 KB
testcase_27 AC 53 ms
49,920 KB
testcase_28 AC 54 ms
50,104 KB
testcase_29 AC 54 ms
50,020 KB
testcase_30 AC 128 ms
52,300 KB
testcase_31 AC 122 ms
51,840 KB
testcase_32 AC 120 ms
52,052 KB
testcase_33 AC 122 ms
52,344 KB
testcase_34 AC 133 ms
52,400 KB
testcase_35 AC 141 ms
52,436 KB
testcase_36 AC 116 ms
52,392 KB
testcase_37 AC 136 ms
52,304 KB
testcase_38 AC 122 ms
52,344 KB
testcase_39 AC 137 ms
52,388 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();
        if (n >= 16) {
            System.out.println((1 << 16) - 1);
            return;
        }
        int[] values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
        }
        boolean[][] dp = new boolean[n + 1][1 << 16];
        dp[0][0] = true;
        for (int i = 1; i <= n; i++) {
            for (int j = 0; j < (1 << 16); j++) {
                int x = values[i - 1];
                for (int k = 0; k < 16 && !dp[i][j]; k++) {
                    dp[i][j] = dp[i - 1][j ^ (j & x)];
                    x = shift(x);
                }
            }
        }
        int ans = 0;
        for (int i = 0; i < (1 << 16); i++) {
            if (dp[n][i]) {
                ans = i;
            }
        }
        System.out.println(ans);
    }
    
    static int shift(int x) {
        return x % 2 * (1 << 15) + x / 2;
    }
}
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