結果

問題 No.741 AscNumber(Easy)
ユーザー tentententen
提出日時 2023-01-10 09:20:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 1,795 bytes
コンパイル時間 2,519 ms
コンパイル使用メモリ 89,372 KB
実行使用メモリ 105,912 KB
最終ジャッジ日時 2024-12-21 10:28:33
合計ジャッジ時間 9,476 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,920 KB
testcase_01 AC 53 ms
36,824 KB
testcase_02 AC 51 ms
37,216 KB
testcase_03 AC 52 ms
36,724 KB
testcase_04 AC 52 ms
36,848 KB
testcase_05 AC 54 ms
36,948 KB
testcase_06 AC 54 ms
37,264 KB
testcase_07 AC 51 ms
37,040 KB
testcase_08 AC 52 ms
36,932 KB
testcase_09 AC 52 ms
37,056 KB
testcase_10 AC 51 ms
36,848 KB
testcase_11 AC 52 ms
37,148 KB
testcase_12 AC 51 ms
37,248 KB
testcase_13 AC 52 ms
36,724 KB
testcase_14 AC 51 ms
46,432 KB
testcase_15 AC 53 ms
37,136 KB
testcase_16 AC 52 ms
37,220 KB
testcase_17 AC 51 ms
37,220 KB
testcase_18 AC 50 ms
37,036 KB
testcase_19 AC 50 ms
37,056 KB
testcase_20 AC 52 ms
37,288 KB
testcase_21 AC 53 ms
37,276 KB
testcase_22 AC 54 ms
37,244 KB
testcase_23 AC 54 ms
37,184 KB
testcase_24 AC 53 ms
46,412 KB
testcase_25 AC 53 ms
36,984 KB
testcase_26 AC 52 ms
37,416 KB
testcase_27 AC 51 ms
44,200 KB
testcase_28 AC 53 ms
37,084 KB
testcase_29 AC 51 ms
37,000 KB
testcase_30 AC 53 ms
37,280 KB
testcase_31 AC 54 ms
46,432 KB
testcase_32 AC 51 ms
37,048 KB
testcase_33 AC 54 ms
37,268 KB
testcase_34 AC 52 ms
37,048 KB
testcase_35 AC 229 ms
102,072 KB
testcase_36 AC 130 ms
65,764 KB
testcase_37 AC 172 ms
75,380 KB
testcase_38 AC 163 ms
75,548 KB
testcase_39 AC 128 ms
66,184 KB
testcase_40 AC 176 ms
75,636 KB
testcase_41 AC 222 ms
105,912 KB
testcase_42 AC 133 ms
67,944 KB
testcase_43 AC 124 ms
67,916 KB
testcase_44 AC 183 ms
80,772 KB
testcase_45 AC 187 ms
84,156 KB
testcase_46 AC 223 ms
104,388 KB
testcase_47 AC 89 ms
52,400 KB
testcase_48 AC 222 ms
104,328 KB
testcase_49 AC 190 ms
85,548 KB
testcase_50 AC 90 ms
47,644 KB
testcase_51 AC 126 ms
68,112 KB
testcase_52 AC 229 ms
104,308 KB
testcase_53 AC 235 ms
104,112 KB
testcase_54 AC 234 ms
104,352 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