結果

問題 No.616 へんなソート
ユーザー htensaihtensai
提出日時 2020-02-12 08:52:32
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 759 bytes
コンパイル時間 2,103 ms
コンパイル使用メモリ 74,292 KB
実行使用メモリ 104,596 KB
最終ジャッジ日時 2024-10-02 13:07:09
合計ジャッジ時間 13,727 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
59,144 KB
testcase_01 AC 130 ms
54,052 KB
testcase_02 AC 122 ms
54,188 KB
testcase_03 AC 111 ms
52,956 KB
testcase_04 AC 140 ms
53,860 KB
testcase_05 AC 119 ms
53,816 KB
testcase_06 AC 143 ms
54,116 KB
testcase_07 AC 126 ms
53,880 KB
testcase_08 AC 147 ms
54,044 KB
testcase_09 AC 137 ms
53,856 KB
testcase_10 AC 125 ms
54,020 KB
testcase_11 AC 140 ms
54,216 KB
testcase_12 AC 161 ms
53,904 KB
testcase_13 AC 1,740 ms
84,820 KB
testcase_14 AC 145 ms
53,920 KB
testcase_15 AC 122 ms
53,988 KB
testcase_16 AC 143 ms
53,684 KB
testcase_17 AC 1,387 ms
75,916 KB
testcase_18 AC 551 ms
52,228 KB
testcase_19 AC 400 ms
52,116 KB
testcase_20 AC 141 ms
41,320 KB
testcase_21 AC 139 ms
41,384 KB
testcase_22 AC 241 ms
48,096 KB
testcase_23 AC 127 ms
41,220 KB
testcase_24 AC 124 ms
40,972 KB
testcase_25 AC 126 ms
41,372 KB
testcase_26 AC 217 ms
47,648 KB
testcase_27 AC 200 ms
43,668 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 + 1][n * (n + 1) / 2 + 1];
        dp[1][0] = 1;
        for (int i = 2; i <= n; i++) {
            for (int j = 0; j <= i * (i - 1) / 2; j++) {
                for (int k = 0; k < i; k++) {
                    dp[i][j + k] += dp[i - 1][j];
                    dp[i][j + k] %= MOD;
                }
            }
        }
        long total = 0;
        for (int i = 0; i <= kk; i++) {
            total += dp[n][i];
            total %= MOD;
        }
        System.out.println(total);
    }
}
0