結果

問題 No.2561 みんな大好きmod 998
ユーザー viral8viral8
提出日時 2023-12-02 14:49:29
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 778 bytes
コンパイル時間 2,434 ms
コンパイル使用メモリ 76,900 KB
実行使用メモリ 38,040 KB
最終ジャッジ日時 2024-09-26 17:28:47
合計ジャッジ時間 7,734 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,936 KB
testcase_01 AC 70 ms
37,904 KB
testcase_02 AC 53 ms
37,044 KB
testcase_03 AC 96 ms
37,916 KB
testcase_04 AC 97 ms
37,560 KB
testcase_05 AC 97 ms
37,920 KB
testcase_06 AC 97 ms
38,040 KB
testcase_07 AC 52 ms
37,016 KB
testcase_08 AC 50 ms
37,016 KB
testcase_09 AC 53 ms
36,696 KB
testcase_10 AC 51 ms
36,976 KB
testcase_11 WA -
testcase_12 AC 50 ms
37,180 KB
testcase_13 AC 50 ms
37,112 KB
testcase_14 AC 50 ms
36,684 KB
testcase_15 WA -
testcase_16 AC 50 ms
37,216 KB
testcase_17 AC 48 ms
37,016 KB
testcase_18 AC 50 ms
36,912 KB
testcase_19 WA -
testcase_20 AC 51 ms
36,940 KB
testcase_21 AC 50 ms
36,664 KB
testcase_22 AC 49 ms
36,900 KB
testcase_23 AC 50 ms
37,116 KB
testcase_24 AC 50 ms
37,024 KB
testcase_25 AC 49 ms
36,568 KB
testcase_26 WA -
testcase_27 AC 94 ms
37,868 KB
testcase_28 AC 72 ms
37,872 KB
testcase_29 AC 65 ms
37,848 KB
testcase_30 AC 70 ms
37,912 KB
testcase_31 AC 81 ms
37,568 KB
testcase_32 AC 72 ms
37,896 KB
testcase_33 AC 69 ms
37,772 KB
testcase_34 AC 97 ms
37,864 KB
testcase_35 AC 67 ms
37,584 KB
testcase_36 AC 68 ms
37,856 KB
testcase_37 AC 72 ms
37,164 KB
testcase_38 AC 71 ms
37,564 KB
testcase_39 AC 75 ms
37,832 KB
testcase_40 AC 73 ms
37,856 KB
testcase_41 AC 69 ms
37,692 KB
testcase_42 AC 79 ms
37,564 KB
testcase_43 AC 73 ms
37,752 KB
testcase_44 AC 68 ms
37,572 KB
testcase_45 AC 86 ms
37,876 KB
testcase_46 AC 72 ms
37,848 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)%998);

		br.close();
		out.close();
	}
	private static long dfs(int now,long sum,int K,int[] A){
		if(K==0)
			return sum%99824353<=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);
	}
}
0