結果

問題 No.1189 Sum is XOR
ユーザー tentententen
提出日時 2023-11-16 17:04:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 402 ms / 2,000 ms
コード長 2,428 bytes
コンパイル時間 2,687 ms
コンパイル使用メモリ 89,928 KB
実行使用メモリ 137,896 KB
最終ジャッジ日時 2023-11-16 17:05:07
合計ジャッジ時間 10,024 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 376 ms
116,448 KB
testcase_01 AC 352 ms
88,696 KB
testcase_02 AC 340 ms
80,412 KB
testcase_03 AC 56 ms
54,000 KB
testcase_04 AC 53 ms
53,992 KB
testcase_05 AC 54 ms
54,000 KB
testcase_06 AC 55 ms
53,984 KB
testcase_07 AC 55 ms
54,000 KB
testcase_08 AC 55 ms
54,004 KB
testcase_09 AC 54 ms
54,000 KB
testcase_10 AC 54 ms
54,000 KB
testcase_11 AC 278 ms
97,716 KB
testcase_12 AC 329 ms
81,492 KB
testcase_13 AC 364 ms
126,568 KB
testcase_14 AC 342 ms
126,040 KB
testcase_15 AC 326 ms
126,688 KB
testcase_16 AC 286 ms
137,896 KB
testcase_17 AC 264 ms
107,036 KB
testcase_18 AC 286 ms
89,316 KB
testcase_19 AC 402 ms
129,840 KB
testcase_20 AC 391 ms
130,708 KB
testcase_21 AC 114 ms
69,764 KB
testcase_22 AC 115 ms
69,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int[] counts = new int[1024];
    static long[][][] dp;
    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;
        }
        for (int i = 0; i < n; i++) {
            counts[sc.nextInt()]++;
        }
        dp = new long[1024][k][1024];
        for (long[][] arr1 : dp) {
            for (long[] arr2 : arr1) {
                Arrays.fill(arr2, -1);
            }
        }
        System.out.println(dfw(1023, k - 1, 0));
    }
    
    static long dfw(int idx, int v, int w) {
        if (v < 0) {
            return 1;
        }
        if (idx < 0) {
            return 0;
        }
        if (dp[idx][v][w] < 0) {
            dp[idx][v][w] = dfw(idx - 1, v, w);
            if ((w & idx) == 0) {
                dp[idx][v][w] += dfw(idx - 1, v - 1, w | idx) * counts[idx] % MOD;
                dp[idx][v][w] %= MOD;
            }
        }
        return dp[idx][v][w];
    }
}
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