結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
36,932 KB
testcase_01 AC 67 ms
37,688 KB
testcase_02 AC 51 ms
36,928 KB
testcase_03 AC 94 ms
37,568 KB
testcase_04 AC 96 ms
37,868 KB
testcase_05 AC 98 ms
37,908 KB
testcase_06 AC 99 ms
38,064 KB
testcase_07 AC 50 ms
37,152 KB
testcase_08 AC 50 ms
37,168 KB
testcase_09 AC 52 ms
36,964 KB
testcase_10 AC 51 ms
37,056 KB
testcase_11 WA -
testcase_12 AC 51 ms
36,696 KB
testcase_13 AC 52 ms
36,876 KB
testcase_14 AC 51 ms
36,668 KB
testcase_15 WA -
testcase_16 AC 51 ms
36,804 KB
testcase_17 AC 50 ms
37,016 KB
testcase_18 AC 50 ms
36,976 KB
testcase_19 WA -
testcase_20 AC 53 ms
36,812 KB
testcase_21 AC 53 ms
36,832 KB
testcase_22 AC 54 ms
37,036 KB
testcase_23 AC 52 ms
36,960 KB
testcase_24 AC 53 ms
36,884 KB
testcase_25 AC 53 ms
36,968 KB
testcase_26 WA -
testcase_27 AC 100 ms
37,876 KB
testcase_28 AC 75 ms
37,876 KB
testcase_29 AC 70 ms
37,880 KB
testcase_30 AC 75 ms
37,908 KB
testcase_31 AC 81 ms
37,684 KB
testcase_32 AC 70 ms
37,868 KB
testcase_33 AC 70 ms
37,848 KB
testcase_34 AC 99 ms
37,572 KB
testcase_35 AC 68 ms
37,836 KB
testcase_36 AC 70 ms
37,868 KB
testcase_37 AC 74 ms
37,688 KB
testcase_38 AC 73 ms
37,868 KB
testcase_39 AC 74 ms
37,868 KB
testcase_40 AC 73 ms
37,860 KB
testcase_41 AC 70 ms
37,864 KB
testcase_42 AC 73 ms
37,532 KB
testcase_43 AC 73 ms
37,264 KB
testcase_44 AC 67 ms
37,920 KB
testcase_45 AC 84 ms
37,908 KB
testcase_46 AC 70 ms
37,688 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 int 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