結果

問題 No.741 AscNumber(Easy)
ユーザー htensaihtensai
提出日時 2019-12-27 09:27:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 307 ms / 2,000 ms
コード長 657 bytes
コンパイル時間 2,000 ms
コンパイル使用メモリ 74,004 KB
実行使用メモリ 119,080 KB
最終ジャッジ日時 2024-10-07 05:38:38
合計ジャッジ時間 12,276 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
53,188 KB
testcase_01 AC 123 ms
53,768 KB
testcase_02 AC 117 ms
53,596 KB
testcase_03 AC 116 ms
53,800 KB
testcase_04 AC 118 ms
53,952 KB
testcase_05 AC 115 ms
54,156 KB
testcase_06 AC 119 ms
54,064 KB
testcase_07 AC 121 ms
54,060 KB
testcase_08 AC 123 ms
54,028 KB
testcase_09 AC 120 ms
54,000 KB
testcase_10 AC 120 ms
54,000 KB
testcase_11 AC 105 ms
52,752 KB
testcase_12 AC 106 ms
52,596 KB
testcase_13 AC 109 ms
52,340 KB
testcase_14 AC 115 ms
53,976 KB
testcase_15 AC 108 ms
52,588 KB
testcase_16 AC 119 ms
53,900 KB
testcase_17 AC 116 ms
54,100 KB
testcase_18 AC 116 ms
53,944 KB
testcase_19 AC 100 ms
52,448 KB
testcase_20 AC 104 ms
52,364 KB
testcase_21 AC 115 ms
52,948 KB
testcase_22 AC 119 ms
53,884 KB
testcase_23 AC 117 ms
53,116 KB
testcase_24 AC 126 ms
53,772 KB
testcase_25 AC 124 ms
53,748 KB
testcase_26 AC 119 ms
54,116 KB
testcase_27 AC 117 ms
53,968 KB
testcase_28 AC 120 ms
54,112 KB
testcase_29 AC 120 ms
53,664 KB
testcase_30 AC 118 ms
53,976 KB
testcase_31 AC 110 ms
52,820 KB
testcase_32 AC 123 ms
53,688 KB
testcase_33 AC 121 ms
53,592 KB
testcase_34 AC 117 ms
53,900 KB
testcase_35 AC 299 ms
118,904 KB
testcase_36 AC 211 ms
77,596 KB
testcase_37 AC 242 ms
86,264 KB
testcase_38 AC 228 ms
85,912 KB
testcase_39 AC 181 ms
76,896 KB
testcase_40 AC 220 ms
84,976 KB
testcase_41 AC 280 ms
118,140 KB
testcase_42 AC 214 ms
85,156 KB
testcase_43 AC 172 ms
76,916 KB
testcase_44 AC 244 ms
92,684 KB
testcase_45 AC 272 ms
115,324 KB
testcase_46 AC 288 ms
119,080 KB
testcase_47 AC 132 ms
61,912 KB
testcase_48 AC 282 ms
119,036 KB
testcase_49 AC 255 ms
95,512 KB
testcase_50 AC 137 ms
58,532 KB
testcase_51 AC 173 ms
76,556 KB
testcase_52 AC 295 ms
115,508 KB
testcase_53 AC 307 ms
115,500 KB
testcase_54 AC 297 ms
115,448 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];
        for (int i = 0; i < 10; i++) {
            dp[1][i] = i + 1;
        }
        for (int i = 2; i <= n; i++) {
            for (int j = 0; j < 10; j++) {
                if (j == 0) {
                    dp[i][j] = dp[i - 1][j];
                } else {
                    dp[i][j] = (dp[i - 1][j] + dp[i][j - 1]) % MOD;
                }
            }
        }
        System.out.println(dp[n][9]);
    }
}
0