結果

問題 No.741 AscNumber(Easy)
ユーザー tentententen
提出日時 2022-08-12 09:10:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 248 ms / 2,000 ms
コード長 1,287 bytes
コンパイル時間 2,296 ms
コンパイル使用メモリ 77,244 KB
実行使用メモリ 112,540 KB
最終ジャッジ日時 2024-09-22 13:16:16
合計ジャッジ時間 9,710 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,536 KB
testcase_01 AC 53 ms
50,192 KB
testcase_02 AC 56 ms
50,176 KB
testcase_03 AC 54 ms
50,056 KB
testcase_04 AC 54 ms
50,440 KB
testcase_05 AC 54 ms
49,872 KB
testcase_06 AC 55 ms
50,612 KB
testcase_07 AC 53 ms
50,228 KB
testcase_08 AC 53 ms
49,952 KB
testcase_09 AC 53 ms
50,272 KB
testcase_10 AC 55 ms
50,436 KB
testcase_11 AC 55 ms
50,520 KB
testcase_12 AC 53 ms
50,480 KB
testcase_13 AC 53 ms
50,184 KB
testcase_14 AC 54 ms
50,396 KB
testcase_15 AC 53 ms
50,488 KB
testcase_16 AC 53 ms
50,048 KB
testcase_17 AC 54 ms
50,180 KB
testcase_18 AC 53 ms
50,048 KB
testcase_19 AC 55 ms
50,416 KB
testcase_20 AC 55 ms
50,404 KB
testcase_21 AC 54 ms
50,364 KB
testcase_22 AC 56 ms
50,408 KB
testcase_23 AC 56 ms
50,020 KB
testcase_24 AC 55 ms
50,268 KB
testcase_25 AC 55 ms
50,540 KB
testcase_26 AC 54 ms
50,312 KB
testcase_27 AC 54 ms
50,376 KB
testcase_28 AC 55 ms
50,560 KB
testcase_29 AC 54 ms
50,336 KB
testcase_30 AC 55 ms
50,436 KB
testcase_31 AC 55 ms
50,424 KB
testcase_32 AC 54 ms
50,392 KB
testcase_33 AC 55 ms
50,244 KB
testcase_34 AC 55 ms
50,356 KB
testcase_35 AC 245 ms
112,540 KB
testcase_36 AC 141 ms
75,724 KB
testcase_37 AC 178 ms
84,796 KB
testcase_38 AC 179 ms
84,572 KB
testcase_39 AC 144 ms
75,772 KB
testcase_40 AC 186 ms
84,976 KB
testcase_41 AC 234 ms
112,280 KB
testcase_42 AC 142 ms
75,872 KB
testcase_43 AC 134 ms
75,848 KB
testcase_44 AC 196 ms
89,380 KB
testcase_45 AC 199 ms
93,344 KB
testcase_46 AC 236 ms
112,268 KB
testcase_47 AC 95 ms
60,804 KB
testcase_48 AC 240 ms
112,060 KB
testcase_49 AC 210 ms
93,512 KB
testcase_50 AC 99 ms
56,300 KB
testcase_51 AC 132 ms
75,536 KB
testcase_52 AC 247 ms
112,188 KB
testcase_53 AC 247 ms
112,112 KB
testcase_54 AC 248 ms
112,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[][] dp = new int[n][10];
        for (int i = 0; i < 10; i++) {
            dp[0][i] = i + 1;
        }
        for (int i = 1; i < n; i++) {
            dp[i][0] = dp[i - 1][0];
            for (int j = 1; j < 10; j++) {
                dp[i][j] = (dp[i - 1][j] + dp[i][j - 1]) % MOD;
            }
        }
        System.out.println(dp[n - 1][9]);
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0