結果

問題 No.616 へんなソート
ユーザー tentententen
提出日時 2020-12-25 12:39:16
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 761 bytes
コンパイル時間 1,946 ms
コンパイル使用メモリ 74,328 KB
実行使用メモリ 54,364 KB
最終ジャッジ日時 2024-09-22 05:39:42
合計ジャッジ時間 12,257 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,076 KB
testcase_01 AC 128 ms
54,240 KB
testcase_02 AC 114 ms
52,944 KB
testcase_03 AC 128 ms
54,276 KB
testcase_04 AC 144 ms
54,132 KB
testcase_05 AC 125 ms
54,148 KB
testcase_06 AC 130 ms
53,692 KB
testcase_07 AC 126 ms
54,088 KB
testcase_08 AC 131 ms
53,648 KB
testcase_09 AC 147 ms
54,012 KB
testcase_10 AC 116 ms
53,132 KB
testcase_11 AC 129 ms
53,632 KB
testcase_12 AC 169 ms
54,012 KB
testcase_13 AC 814 ms
53,612 KB
testcase_14 AC 167 ms
54,292 KB
testcase_15 AC 121 ms
54,276 KB
testcase_16 AC 129 ms
53,604 KB
testcase_17 AC 508 ms
54,172 KB
testcase_18 AC 197 ms
53,988 KB
testcase_19 AC 201 ms
54,244 KB
testcase_20 AC 140 ms
54,096 KB
testcase_21 AC 145 ms
54,140 KB
testcase_22 AC 172 ms
54,312 KB
testcase_23 AC 126 ms
54,252 KB
testcase_24 AC 126 ms
53,896 KB
testcase_25 AC 127 ms
54,364 KB
testcase_26 AC 125 ms
54,156 KB
testcase_27 AC 127 ms
53,944 KB
testcase_28 TLE -
testcase_29 TLE -
権限があれば一括ダウンロードができます

ソースコード

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 k = sc.nextInt();
        int[] dp = new int[k + 1];
        int max = 0;
        dp[0] = 1;
        for (int i = 2; i <= n; i++) {
            for (int j = max; j >= 0; j--) {
                for (int a = 1; a < i && a + j <= k; a++) {
                    dp[a + j] += dp[j];
                    dp[a + j] %= MOD;
                    max = Math.max(max, a + j);
                }
            }
        }
        int ans = 0;
        for (int x : dp) {
            ans += x;
            ans %= MOD;
        }
        System.out.println(ans);
    }
}
0