結果

問題 No.1238 選抜クラス
ユーザー ks2mks2m
提出日時 2020-09-25 21:56:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 921 ms / 2,000 ms
コード長 1,033 bytes
コンパイル時間 3,194 ms
コンパイル使用メモリ 76,476 KB
実行使用メモリ 468,244 KB
最終ジャッジ日時 2024-06-28 06:33:30
合計ジャッジ時間 17,916 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,056 KB
testcase_01 AC 55 ms
49,876 KB
testcase_02 AC 62 ms
54,676 KB
testcase_03 AC 55 ms
50,040 KB
testcase_04 AC 54 ms
50,316 KB
testcase_05 AC 54 ms
50,344 KB
testcase_06 AC 54 ms
50,084 KB
testcase_07 AC 56 ms
52,560 KB
testcase_08 AC 61 ms
54,848 KB
testcase_09 AC 73 ms
59,684 KB
testcase_10 AC 58 ms
52,368 KB
testcase_11 AC 71 ms
59,532 KB
testcase_12 AC 62 ms
55,096 KB
testcase_13 AC 65 ms
55,052 KB
testcase_14 AC 61 ms
54,712 KB
testcase_15 AC 74 ms
59,140 KB
testcase_16 AC 71 ms
59,680 KB
testcase_17 AC 921 ms
467,936 KB
testcase_18 AC 827 ms
468,044 KB
testcase_19 AC 840 ms
468,228 KB
testcase_20 AC 805 ms
467,712 KB
testcase_21 AC 774 ms
468,168 KB
testcase_22 AC 863 ms
467,996 KB
testcase_23 AC 849 ms
467,784 KB
testcase_24 AC 860 ms
467,956 KB
testcase_25 AC 855 ms
467,964 KB
testcase_26 AC 862 ms
468,244 KB
testcase_27 AC 854 ms
468,076 KB
testcase_28 AC 853 ms
468,084 KB
testcase_29 AC 826 ms
467,952 KB
testcase_30 AC 138 ms
87,148 KB
testcase_31 AC 266 ms
189,776 KB
testcase_32 AC 544 ms
366,096 KB
testcase_33 AC 58 ms
52,416 KB
testcase_34 AC 589 ms
366,160 KB
testcase_35 AC 183 ms
111,092 KB
testcase_36 AC 94 ms
63,356 KB
testcase_37 AC 141 ms
93,060 KB
testcase_38 AC 786 ms
468,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int k = Integer.parseInt(sa[1]);
		sa = br.readLine().split(" ");
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		int mod = 1000000007;
		int[][][] dp = new int[n + 1][n + 1][10001];
		dp[0][0][0] = 1;
		for (int i = 0; i < n; i++) {
			int i1 = i + 1;
			for (int j = 0; j <= i; j++) {
				for (int j2 = 0; j2 <= 100 * i; j2++) {
					dp[i1][j][j2] += dp[i][j][j2];
					dp[i1][j][j2] %= mod;
					dp[i1][j + 1][j2 + a[i]] += dp[i][j][j2];
					dp[i1][j + 1][j2 + a[i]] %= mod;
				}
			}
		}

		long ans = 0;
		for (int j = 1; j <= n; j++) {
			for (int j2 = j * k; j2 <= 10000; j2++) {
				ans += dp[n][j][j2];
			}
		}
		ans %= mod;
		System.out.println(ans);
	}
}
0