結果

問題 No.1189 Sum is XOR
ユーザー tentententen
提出日時 2020-08-24 07:16:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,768 ms / 2,000 ms
コード長 931 bytes
コンパイル時間 3,361 ms
コンパイル使用メモリ 84,880 KB
実行使用メモリ 69,344 KB
最終ジャッジ日時 2024-11-06 02:48:05
合計ジャッジ時間 23,256 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,768 ms
69,344 KB
testcase_01 AC 1,727 ms
69,180 KB
testcase_02 AC 1,764 ms
69,268 KB
testcase_03 AC 126 ms
53,080 KB
testcase_04 AC 140 ms
54,112 KB
testcase_05 AC 137 ms
54,076 KB
testcase_06 AC 138 ms
54,004 KB
testcase_07 AC 142 ms
54,248 KB
testcase_08 AC 138 ms
54,132 KB
testcase_09 AC 136 ms
54,112 KB
testcase_10 AC 140 ms
54,352 KB
testcase_11 AC 631 ms
59,404 KB
testcase_12 AC 1,729 ms
69,112 KB
testcase_13 AC 1,580 ms
69,128 KB
testcase_14 AC 1,256 ms
69,324 KB
testcase_15 AC 633 ms
59,340 KB
testcase_16 AC 486 ms
59,308 KB
testcase_17 AC 620 ms
59,484 KB
testcase_18 AC 1,083 ms
69,268 KB
testcase_19 AC 1,387 ms
69,228 KB
testcase_20 AC 1,504 ms
69,300 KB
testcase_21 AC 138 ms
54,160 KB
testcase_22 AC 145 ms
53,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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

0