結果

問題 No.1238 選抜クラス
ユーザー tentententen
提出日時 2022-08-16 08:54:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 714 ms / 2,000 ms
コード長 1,766 bytes
コンパイル時間 2,467 ms
コンパイル使用メモリ 77,972 KB
実行使用メモリ 474,380 KB
最終ジャッジ日時 2024-10-03 01:14:25
合計ジャッジ時間 15,989 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
37,432 KB
testcase_01 AC 52 ms
37,708 KB
testcase_02 AC 61 ms
40,784 KB
testcase_03 AC 50 ms
37,440 KB
testcase_04 AC 51 ms
37,324 KB
testcase_05 AC 52 ms
37,220 KB
testcase_06 AC 51 ms
37,412 KB
testcase_07 AC 57 ms
38,668 KB
testcase_08 AC 64 ms
40,720 KB
testcase_09 AC 89 ms
49,984 KB
testcase_10 AC 60 ms
39,528 KB
testcase_11 AC 72 ms
45,500 KB
testcase_12 AC 78 ms
45,420 KB
testcase_13 AC 79 ms
45,428 KB
testcase_14 AC 69 ms
40,864 KB
testcase_15 AC 91 ms
49,756 KB
testcase_16 AC 75 ms
45,776 KB
testcase_17 AC 710 ms
463,712 KB
testcase_18 AC 682 ms
474,380 KB
testcase_19 AC 697 ms
460,520 KB
testcase_20 AC 639 ms
463,240 KB
testcase_21 AC 650 ms
463,436 KB
testcase_22 AC 550 ms
463,696 KB
testcase_23 AC 536 ms
463,704 KB
testcase_24 AC 540 ms
460,488 KB
testcase_25 AC 547 ms
463,484 KB
testcase_26 AC 691 ms
468,044 KB
testcase_27 AC 714 ms
472,496 KB
testcase_28 AC 663 ms
467,964 KB
testcase_29 AC 676 ms
472,216 KB
testcase_30 AC 137 ms
84,180 KB
testcase_31 AC 245 ms
188,212 KB
testcase_32 AC 466 ms
367,872 KB
testcase_33 AC 58 ms
46,448 KB
testcase_34 AC 491 ms
359,588 KB
testcase_35 AC 148 ms
102,196 KB
testcase_36 AC 109 ms
54,472 KB
testcase_37 AC 133 ms
81,220 KB
testcase_38 AC 649 ms
463,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    static int[] values;
    static int[][][] dp;
    static int k;
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        k = sc.nextInt();
        values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
        }
        dp = new int[n][n + 1][10001];
        for (int[][] arr1 : dp) {
            for (int[] arr2 : arr1) {
                Arrays.fill(arr2, -1);
            }
        }
        System.out.println(dfw(n - 1, 0, 0));
    }
    
    static int dfw(int idx, int count, int v) {
        if (idx < 0) {
            if (count > 0 && count * k <= v) {
                return 1;
            } else {
                return 0;
            }
        }
        if (dp[idx][count][v] < 0) {
            dp[idx][count][v] = (dfw(idx - 1, count, v) + dfw(idx - 1, count + 1, v + values[idx])) % MOD;
        }
        return dp[idx][count][v];
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0