結果

問題 No.616 へんなソート
ユーザー tentententen
提出日時 2020-12-01 08:22:59
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 711 bytes
コンパイル時間 2,213 ms
コンパイル使用メモリ 73,988 KB
実行使用メモリ 119,648 KB
最終ジャッジ日時 2024-09-13 02:50:24
合計ジャッジ時間 13,714 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
60,712 KB
testcase_01 AC 133 ms
53,972 KB
testcase_02 AC 135 ms
53,912 KB
testcase_03 AC 134 ms
54,168 KB
testcase_04 AC 150 ms
53,732 KB
testcase_05 AC 133 ms
53,920 KB
testcase_06 AC 147 ms
54,168 KB
testcase_07 AC 132 ms
54,004 KB
testcase_08 AC 149 ms
54,300 KB
testcase_09 AC 165 ms
54,164 KB
testcase_10 AC 136 ms
54,080 KB
testcase_11 AC 157 ms
54,088 KB
testcase_12 AC 179 ms
54,284 KB
testcase_13 TLE -
testcase_14 AC 177 ms
54,012 KB
testcase_15 AC 134 ms
54,252 KB
testcase_16 AC 166 ms
53,952 KB
testcase_17 AC 957 ms
63,560 KB
testcase_18 AC 235 ms
54,208 KB
testcase_19 AC 251 ms
56,420 KB
testcase_20 AC 148 ms
54,008 KB
testcase_21 AC 152 ms
53,980 KB
testcase_22 AC 185 ms
53,940 KB
testcase_23 AC 134 ms
54,200 KB
testcase_24 AC 134 ms
54,064 KB
testcase_25 AC 135 ms
54,032 KB
testcase_26 AC 135 ms
53,728 KB
testcase_27 AC 133 ms
53,908 KB
testcase_28 TLE -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int kk = sc.nextInt();
        int[][] dp = new int[n][kk + 1];
        dp[0][0] = 1;
        for (int i = 1; i < n; i++) {
            for (int j = 0; j <= i; j++) {
                for (int k = 0; j + k <= kk; k++) {
                    dp[i][j + k] += dp[i - 1][k];
                    dp[i][j + k] %= MOD;
                }
            }
        }
        int sum = 0;
        for (int x : dp[n - 1]) {
            sum += x;
            sum %= MOD;
        }
        System.out.println(sum);
    }
}
0