結果

問題 No.1238 選抜クラス
ユーザー tentententen
提出日時 2023-03-22 14:06:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 2,248 bytes
コンパイル時間 3,303 ms
コンパイル使用メモリ 88,116 KB
実行使用メモリ 55,676 KB
最終ジャッジ日時 2024-09-18 14:53:41
合計ジャッジ時間 6,766 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,532 KB
testcase_01 AC 56 ms
50,644 KB
testcase_02 AC 56 ms
50,516 KB
testcase_03 AC 58 ms
50,208 KB
testcase_04 AC 57 ms
50,584 KB
testcase_05 AC 56 ms
50,096 KB
testcase_06 AC 57 ms
50,416 KB
testcase_07 AC 58 ms
50,564 KB
testcase_08 AC 56 ms
50,144 KB
testcase_09 AC 58 ms
50,568 KB
testcase_10 AC 57 ms
50,212 KB
testcase_11 AC 57 ms
50,396 KB
testcase_12 AC 56 ms
50,580 KB
testcase_13 AC 56 ms
50,240 KB
testcase_14 AC 56 ms
50,508 KB
testcase_15 AC 58 ms
50,512 KB
testcase_16 AC 57 ms
50,540 KB
testcase_17 AC 90 ms
51,760 KB
testcase_18 AC 66 ms
50,148 KB
testcase_19 AC 56 ms
50,476 KB
testcase_20 AC 80 ms
51,916 KB
testcase_21 AC 56 ms
50,548 KB
testcase_22 AC 58 ms
50,452 KB
testcase_23 AC 59 ms
50,436 KB
testcase_24 AC 84 ms
55,676 KB
testcase_25 AC 57 ms
50,276 KB
testcase_26 AC 84 ms
53,812 KB
testcase_27 AC 56 ms
50,364 KB
testcase_28 AC 62 ms
50,388 KB
testcase_29 AC 62 ms
50,424 KB
testcase_30 AC 57 ms
50,200 KB
testcase_31 AC 66 ms
50,640 KB
testcase_32 AC 56 ms
50,084 KB
testcase_33 AC 57 ms
50,552 KB
testcase_34 AC 68 ms
50,484 KB
testcase_35 AC 58 ms
50,184 KB
testcase_36 AC 57 ms
50,408 KB
testcase_37 AC 60 ms
50,452 KB
testcase_38 AC 61 ms
50,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int[] values;
    static int[][] dp;
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int k = sc.nextInt();
        values = new int[n];
        int max = 0;
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt() - k;
            max += Math.max(0, values[i]);
        }
        Arrays.sort(values);
        dp = new int[n][max + 1];
        for (int[] arr : dp) {
            Arrays.fill(arr, -1);
        }
        System.out.println((dfw(n - 1, 0) - 1 + MOD) % MOD);
    }
    
    static int dfw(int idx, int v) {
        if (v < 0) {
            return 0;
        }
        if (idx < 0) {
            return 1;
        }
        if (dp[idx][v] < 0) {
            dp[idx][v] = (dfw(idx - 1, v) + dfw(idx - 1, v + values[idx])) % MOD;
        }
        return dp[idx][v];
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0