結果

問題 No.1238 選抜クラス
ユーザー ks2mks2m
提出日時 2020-09-25 21:53:55
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 1,088 bytes
コンパイル時間 2,133 ms
コンパイル使用メモリ 77,152 KB
実行使用メモリ 743,712 KB
最終ジャッジ日時 2024-06-28 06:31:02
合計ジャッジ時間 20,160 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
37,560 KB
testcase_01 AC 54 ms
38,244 KB
testcase_02 AC 65 ms
49,132 KB
testcase_03 AC 53 ms
37,340 KB
testcase_04 AC 52 ms
37,484 KB
testcase_05 AC 50 ms
37,084 KB
testcase_06 AC 52 ms
37,176 KB
testcase_07 AC 60 ms
44,108 KB
testcase_08 AC 66 ms
49,132 KB
testcase_09 AC 80 ms
55,352 KB
testcase_10 AC 61 ms
43,912 KB
testcase_11 AC 79 ms
53,192 KB
testcase_12 AC 71 ms
49,124 KB
testcase_13 AC 67 ms
48,568 KB
testcase_14 AC 67 ms
48,816 KB
testcase_15 AC 89 ms
55,992 KB
testcase_16 AC 79 ms
53,220 KB
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 MLE -
testcase_27 MLE -
testcase_28 MLE -
testcase_29 MLE -
testcase_30 AC 164 ms
120,204 KB
testcase_31 AC 416 ms
351,028 KB
testcase_32 MLE -
testcase_33 AC 60 ms
46,340 KB
testcase_34 MLE -
testcase_35 AC 216 ms
187,716 KB
testcase_36 AC 112 ms
83,256 KB
testcase_37 AC 163 ms
135,428 KB
testcase_38 MLE -
権限があれば一括ダウンロードができます

ソースコード

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;
		long[][][] dp = new long[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 + 1][j2 + a[i]] += dp[i][j][j2];
				}
			}
			for (int j = 0; j <= i1; j++) {
				for (int j2 = 0; j2 <= 100 * i1; j2++) {
					dp[i1][j][j2] %= 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