結果

問題 No.741 AscNumber(Easy)
ユーザー tentententen
提出日時 2023-11-15 20:20:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 245 ms / 2,000 ms
コード長 1,789 bytes
コンパイル時間 2,301 ms
コンパイル使用メモリ 87,444 KB
実行使用メモリ 102,308 KB
最終ジャッジ日時 2024-09-26 04:48:25
合計ジャッジ時間 9,063 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
36,932 KB
testcase_01 AC 47 ms
37,200 KB
testcase_02 AC 46 ms
37,036 KB
testcase_03 AC 47 ms
36,772 KB
testcase_04 AC 46 ms
36,736 KB
testcase_05 AC 48 ms
37,276 KB
testcase_06 AC 48 ms
37,048 KB
testcase_07 AC 46 ms
36,936 KB
testcase_08 AC 46 ms
36,988 KB
testcase_09 AC 47 ms
37,148 KB
testcase_10 AC 45 ms
36,564 KB
testcase_11 AC 48 ms
36,900 KB
testcase_12 AC 47 ms
37,028 KB
testcase_13 AC 47 ms
37,148 KB
testcase_14 AC 46 ms
37,092 KB
testcase_15 AC 48 ms
37,048 KB
testcase_16 AC 48 ms
37,196 KB
testcase_17 AC 49 ms
37,036 KB
testcase_18 AC 49 ms
36,988 KB
testcase_19 AC 49 ms
37,004 KB
testcase_20 AC 48 ms
37,352 KB
testcase_21 AC 46 ms
37,076 KB
testcase_22 AC 47 ms
37,324 KB
testcase_23 AC 47 ms
37,288 KB
testcase_24 AC 48 ms
36,980 KB
testcase_25 AC 48 ms
36,584 KB
testcase_26 AC 48 ms
36,960 KB
testcase_27 AC 48 ms
36,800 KB
testcase_28 AC 47 ms
37,176 KB
testcase_29 AC 47 ms
36,912 KB
testcase_30 AC 49 ms
36,828 KB
testcase_31 AC 50 ms
37,244 KB
testcase_32 AC 48 ms
36,736 KB
testcase_33 AC 48 ms
37,116 KB
testcase_34 AC 49 ms
37,288 KB
testcase_35 AC 240 ms
102,308 KB
testcase_36 AC 129 ms
65,740 KB
testcase_37 AC 169 ms
75,464 KB
testcase_38 AC 170 ms
75,292 KB
testcase_39 AC 132 ms
65,780 KB
testcase_40 AC 172 ms
75,344 KB
testcase_41 AC 234 ms
102,248 KB
testcase_42 AC 136 ms
65,820 KB
testcase_43 AC 131 ms
65,912 KB
testcase_44 AC 186 ms
78,984 KB
testcase_45 AC 191 ms
82,088 KB
testcase_46 AC 233 ms
102,092 KB
testcase_47 AC 90 ms
50,236 KB
testcase_48 AC 235 ms
102,060 KB
testcase_49 AC 211 ms
83,424 KB
testcase_50 AC 77 ms
45,604 KB
testcase_51 AC 131 ms
66,048 KB
testcase_52 AC 245 ms
102,272 KB
testcase_53 AC 242 ms
102,096 KB
testcase_54 AC 235 ms
102,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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 + 1][10];
        Arrays.fill(dp[0], 1);
        for (int i = 1; i <= n; i++) {
            dp[i][0] = 1;
            for (int j = 1; j < 10; j++) {
                dp[i][j] = (dp[i - 1][j] + dp[i][j - 1]) % MOD;
            }
        }
        System.out.println(dp[n][9]);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0