結果

問題 No.2561 みんな大好きmod 998
ユーザー viral8viral8
提出日時 2023-12-02 14:50:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 4,000 ms
コード長 781 bytes
コンパイル時間 2,553 ms
コンパイル使用メモリ 76,620 KB
実行使用メモリ 37,912 KB
最終ジャッジ日時 2024-09-26 17:31:13
合計ジャッジ時間 7,687 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
36,672 KB
testcase_01 AC 78 ms
37,540 KB
testcase_02 AC 60 ms
36,972 KB
testcase_03 AC 109 ms
37,708 KB
testcase_04 AC 114 ms
37,584 KB
testcase_05 AC 115 ms
37,808 KB
testcase_06 AC 118 ms
37,700 KB
testcase_07 AC 61 ms
36,496 KB
testcase_08 AC 59 ms
37,056 KB
testcase_09 AC 63 ms
36,504 KB
testcase_10 AC 59 ms
36,848 KB
testcase_11 AC 86 ms
37,584 KB
testcase_12 AC 60 ms
36,972 KB
testcase_13 AC 60 ms
36,792 KB
testcase_14 AC 60 ms
36,964 KB
testcase_15 AC 121 ms
37,908 KB
testcase_16 AC 61 ms
36,884 KB
testcase_17 AC 62 ms
36,812 KB
testcase_18 AC 60 ms
37,216 KB
testcase_19 AC 109 ms
37,592 KB
testcase_20 AC 62 ms
36,876 KB
testcase_21 AC 59 ms
36,812 KB
testcase_22 AC 59 ms
36,956 KB
testcase_23 AC 60 ms
36,900 KB
testcase_24 AC 60 ms
37,076 KB
testcase_25 AC 61 ms
36,824 KB
testcase_26 AC 88 ms
37,776 KB
testcase_27 AC 113 ms
37,592 KB
testcase_28 AC 91 ms
37,868 KB
testcase_29 AC 83 ms
37,584 KB
testcase_30 AC 89 ms
37,792 KB
testcase_31 AC 96 ms
37,592 KB
testcase_32 AC 81 ms
37,772 KB
testcase_33 AC 76 ms
37,828 KB
testcase_34 AC 110 ms
37,860 KB
testcase_35 AC 78 ms
37,912 KB
testcase_36 AC 78 ms
37,556 KB
testcase_37 AC 83 ms
37,556 KB
testcase_38 AC 81 ms
37,848 KB
testcase_39 AC 81 ms
37,772 KB
testcase_40 AC 84 ms
37,824 KB
testcase_41 AC 81 ms
37,856 KB
testcase_42 AC 86 ms
37,856 KB
testcase_43 AC 82 ms
37,316 KB
testcase_44 AC 78 ms
37,536 KB
testcase_45 AC 100 ms
37,876 KB
testcase_46 AC 78 ms
37,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
class Main{
	private static final BufferedReader br =
		new BufferedReader(new InputStreamReader(System.in));
	private static final PrintWriter out =
		new PrintWriter(System.out);
	public static void main(String[] args)throws IOException{

		String[] str = br.readLine().split(" ");
		int N = Integer.parseInt(str[0]);
		int K = Integer.parseInt(str[1]);
		str = br.readLine().split(" ");
		int[] A = new int[N];
		for(int i=0;i<N;i++)
			A[i] = Integer.parseInt(str[i]);
		out.println(dfs(0,0,K,A));

		br.close();
		out.close();
	}
	private static long dfs(int now,long sum,int K,int[] A){
		if(K==0)
			return sum%998244353<=sum%998?1:0;
		if(now==A.length)
			return 0;
		return (dfs(now+1,sum,K,A)+dfs(now+1,sum+A[now],K-1,A))%998;
	}
}
0