結果

問題 No.1189 Sum is XOR
ユーザー tentententen
提出日時 2021-12-01 14:14:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 576 ms / 2,000 ms
コード長 1,601 bytes
コンパイル時間 2,129 ms
コンパイル使用メモリ 77,148 KB
実行使用メモリ 46,660 KB
最終ジャッジ日時 2024-07-04 13:54:19
合計ジャッジ時間 9,350 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 576 ms
45,076 KB
testcase_01 AC 430 ms
46,660 KB
testcase_02 AC 397 ms
46,420 KB
testcase_03 AC 50 ms
37,188 KB
testcase_04 AC 50 ms
37,036 KB
testcase_05 AC 50 ms
36,896 KB
testcase_06 AC 50 ms
36,932 KB
testcase_07 AC 50 ms
36,864 KB
testcase_08 AC 50 ms
37,136 KB
testcase_09 AC 51 ms
36,748 KB
testcase_10 AC 52 ms
36,632 KB
testcase_11 AC 244 ms
43,776 KB
testcase_12 AC 390 ms
45,236 KB
testcase_13 AC 497 ms
46,424 KB
testcase_14 AC 332 ms
45,956 KB
testcase_15 AC 241 ms
42,724 KB
testcase_16 AC 187 ms
41,152 KB
testcase_17 AC 201 ms
42,460 KB
testcase_18 AC 271 ms
44,760 KB
testcase_19 AC 427 ms
46,284 KB
testcase_20 AC 491 ms
46,148 KB
testcase_21 AC 53 ms
37,048 KB
testcase_22 AC 52 ms
36,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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][1 << 10];
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            int xor = ((1 << 10) - 1) ^ x;
            for (int j = xor; j > 0; j = ((j - 1) & xor)) {
                for (int a = 1; a <= k; a++) {
                    dp[a][j | x] += dp[a - 1][j];
                    dp[a][j | x] %= MOD;
                }
            }
            dp[1][x]++;
        }
        int ans = 0;
        for (int x : dp[k]) {
            ans += x;
            ans %= MOD;
        }
        System.out.println(ans);
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    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 String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0