結果

問題 No.1189 Sum is XOR
ユーザー tentententen
提出日時 2023-01-11 11:24:05
言語 Java
(openjdk 23)
結果
AC  
実行時間 493 ms / 2,000 ms
コード長 2,166 bytes
コンパイル時間 5,476 ms
コンパイル使用メモリ 89,084 KB
実行使用メモリ 57,640 KB
最終ジャッジ日時 2024-12-22 02:31:12
合計ジャッジ時間 11,346 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 493 ms
56,032 KB
testcase_01 AC 362 ms
56,264 KB
testcase_02 AC 379 ms
57,396 KB
testcase_03 AC 55 ms
50,548 KB
testcase_04 AC 55 ms
50,016 KB
testcase_05 AC 55 ms
50,528 KB
testcase_06 AC 57 ms
50,532 KB
testcase_07 AC 55 ms
50,364 KB
testcase_08 AC 54 ms
50,008 KB
testcase_09 AC 53 ms
50,280 KB
testcase_10 AC 54 ms
50,368 KB
testcase_11 AC 215 ms
57,016 KB
testcase_12 AC 381 ms
57,524 KB
testcase_13 AC 400 ms
56,228 KB
testcase_14 AC 345 ms
57,640 KB
testcase_15 AC 227 ms
55,108 KB
testcase_16 AC 170 ms
53,272 KB
testcase_17 AC 220 ms
57,056 KB
testcase_18 AC 248 ms
57,064 KB
testcase_19 AC 459 ms
57,544 KB
testcase_20 AC 459 ms
57,480 KB
testcase_21 AC 55 ms
50,464 KB
testcase_22 AC 55 ms
50,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    static final int MOD = 998244353;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int k = sc.nextInt();
        if (k > 10) {
            System.out.println(0);
            return;
        }
        int[][] dp = new int[k][1 << 10];
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            for (int j = k - 2; j >= 0; j--) {
                for (int a = (((1 << 10) - 1) ^ x); a > 0; a = ((a - 1) & (((1 << 10) - 1) ^ x))) {
                    dp[j + 1][a | x] += dp[j][a];
                    dp[j + 1][a | x] %= MOD;
                }
            }
            dp[0][x]++;
        }
        int ans = 0;
        for (int x : dp[k - 1]) {
            ans += x;
            ans %= MOD;
        }
        System.out.println(ans);
    }
}

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