結果

問題 No.741 AscNumber(Easy)
ユーザー tentententen
提出日時 2020-11-19 08:37:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 336 ms / 2,000 ms
コード長 609 bytes
コンパイル時間 2,319 ms
コンパイル使用メモリ 74,332 KB
実行使用メモリ 119,532 KB
最終ジャッジ日時 2024-07-23 09:45:08
合計ジャッジ時間 14,720 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,028 KB
testcase_01 AC 133 ms
54,028 KB
testcase_02 AC 137 ms
54,048 KB
testcase_03 AC 136 ms
53,956 KB
testcase_04 AC 134 ms
54,000 KB
testcase_05 AC 137 ms
54,160 KB
testcase_06 AC 133 ms
54,052 KB
testcase_07 AC 136 ms
54,116 KB
testcase_08 AC 135 ms
54,296 KB
testcase_09 AC 133 ms
54,144 KB
testcase_10 AC 133 ms
54,192 KB
testcase_11 AC 141 ms
54,276 KB
testcase_12 AC 135 ms
54,020 KB
testcase_13 AC 138 ms
53,860 KB
testcase_14 AC 137 ms
54,120 KB
testcase_15 AC 138 ms
54,016 KB
testcase_16 AC 137 ms
53,972 KB
testcase_17 AC 136 ms
54,256 KB
testcase_18 AC 140 ms
54,116 KB
testcase_19 AC 139 ms
54,572 KB
testcase_20 AC 132 ms
53,868 KB
testcase_21 AC 139 ms
54,108 KB
testcase_22 AC 134 ms
54,088 KB
testcase_23 AC 141 ms
54,056 KB
testcase_24 AC 138 ms
54,244 KB
testcase_25 AC 139 ms
54,056 KB
testcase_26 AC 138 ms
54,020 KB
testcase_27 AC 140 ms
53,980 KB
testcase_28 AC 137 ms
54,464 KB
testcase_29 AC 139 ms
54,200 KB
testcase_30 AC 137 ms
54,156 KB
testcase_31 AC 136 ms
54,116 KB
testcase_32 AC 133 ms
53,920 KB
testcase_33 AC 139 ms
53,972 KB
testcase_34 AC 135 ms
54,200 KB
testcase_35 AC 334 ms
119,136 KB
testcase_36 AC 223 ms
78,016 KB
testcase_37 AC 270 ms
86,312 KB
testcase_38 AC 266 ms
86,368 KB
testcase_39 AC 222 ms
78,296 KB
testcase_40 AC 271 ms
86,112 KB
testcase_41 AC 336 ms
119,360 KB
testcase_42 AC 261 ms
86,164 KB
testcase_43 AC 216 ms
77,856 KB
testcase_44 AC 291 ms
92,776 KB
testcase_45 AC 318 ms
116,104 KB
testcase_46 AC 335 ms
119,532 KB
testcase_47 AC 169 ms
63,376 KB
testcase_48 AC 336 ms
119,332 KB
testcase_49 AC 284 ms
95,744 KB
testcase_50 AC 160 ms
58,880 KB
testcase_51 AC 216 ms
77,944 KB
testcase_52 AC 334 ms
115,768 KB
testcase_53 AC 336 ms
115,608 KB
testcase_54 AC 333 ms
115,804 KB
権限があれば一括ダウンロードができます

ソースコード

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[][] dp = new int[n + 1][10];
        Arrays.fill(dp[0], 1);
        for (int i = 1; i <= n; i++) {
            for (int j = 0; j < 10; j++) {
                if (j  > 0) {
                    dp[i][j] = (dp[i - 1][j] + dp[i][j - 1]) % MOD;
                } else {
                    dp[i][j] = dp[i - 1][j];
                }
            }
        }
        System.out.println(dp[n][9]);
    }
}
0