結果

問題 No.1189 Sum is XOR
ユーザー tentententen
提出日時 2024-07-22 17:12:07
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,017 bytes
コンパイル時間 2,125 ms
コンパイル使用メモリ 78,664 KB
実行使用メモリ 123,100 KB
最終ジャッジ日時 2024-07-22 17:12:23
合計ジャッジ時間 8,827 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 51 ms
37,232 KB
testcase_04 AC 45 ms
37,008 KB
testcase_05 AC 44 ms
36,940 KB
testcase_06 AC 44 ms
37,076 KB
testcase_07 AC 45 ms
37,124 KB
testcase_08 AC 46 ms
37,080 KB
testcase_09 AC 44 ms
37,020 KB
testcase_10 AC 46 ms
36,828 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 105 ms
55,936 KB
testcase_22 AC 97 ms
55,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static final int MOD = 998244353;
    static int[] counts = new int[1 << 10];
    static long[][][] dp;
    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;
        }
        while (n-- > 0) {
            counts[sc.nextInt()]++;
        }
        dp = new long[k][1 << 10][1 << 10];
        for (long[][] arr1 : dp) {
            for (long[] arr2 : arr1) {
                Arrays.fill(arr2, -1);
            }
        }
        System.out.println(dfw(k - 1, (1 << 10) - 1, (1 << 10) - 1));
    }
    
    static long dfw(int c, int idx, int v) {
        if (c < 0) {
            return 1;
        }
        if (idx == 0) {
            return 0;
        }
        if (dp[c][idx][v] < 0) {
            dp[c][idx][v] = (dfw(c, idx - 1, v) + ((v & idx) == 0 ? 0 : dfw(c - 1, idx - 1, v ^ idx) * counts[idx])) % MOD;
        }
        return dp[c][idx][v];
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0