結果

問題 No.741 AscNumber(Easy)
ユーザー takeya_okinotakeya_okino
提出日時 2019-06-15 20:03:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 495 ms / 2,000 ms
コード長 591 bytes
コンパイル時間 2,192 ms
コンパイル使用メモリ 74,456 KB
実行使用メモリ 139,628 KB
最終ジャッジ日時 2024-11-20 18:54:17
合計ジャッジ時間 16,369 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,456 KB
testcase_01 AC 133 ms
41,428 KB
testcase_02 AC 132 ms
41,240 KB
testcase_03 AC 133 ms
41,288 KB
testcase_04 AC 133 ms
41,452 KB
testcase_05 AC 118 ms
40,132 KB
testcase_06 AC 133 ms
41,564 KB
testcase_07 AC 134 ms
41,472 KB
testcase_08 AC 132 ms
41,328 KB
testcase_09 AC 132 ms
40,960 KB
testcase_10 AC 131 ms
41,008 KB
testcase_11 AC 131 ms
41,008 KB
testcase_12 AC 119 ms
40,144 KB
testcase_13 AC 130 ms
41,384 KB
testcase_14 AC 120 ms
40,360 KB
testcase_15 AC 130 ms
41,328 KB
testcase_16 AC 131 ms
41,384 KB
testcase_17 AC 132 ms
41,260 KB
testcase_18 AC 135 ms
41,224 KB
testcase_19 AC 134 ms
41,096 KB
testcase_20 AC 121 ms
39,980 KB
testcase_21 AC 136 ms
41,180 KB
testcase_22 AC 133 ms
41,452 KB
testcase_23 AC 121 ms
40,320 KB
testcase_24 AC 132 ms
41,296 KB
testcase_25 AC 132 ms
41,424 KB
testcase_26 AC 129 ms
41,352 KB
testcase_27 AC 131 ms
41,076 KB
testcase_28 AC 130 ms
41,084 KB
testcase_29 AC 131 ms
41,072 KB
testcase_30 AC 129 ms
41,560 KB
testcase_31 AC 129 ms
41,112 KB
testcase_32 AC 129 ms
40,976 KB
testcase_33 AC 133 ms
41,324 KB
testcase_34 AC 133 ms
41,404 KB
testcase_35 AC 489 ms
134,948 KB
testcase_36 AC 288 ms
81,820 KB
testcase_37 AC 325 ms
102,280 KB
testcase_38 AC 324 ms
102,296 KB
testcase_39 AC 290 ms
81,136 KB
testcase_40 AC 343 ms
102,192 KB
testcase_41 AC 475 ms
127,852 KB
testcase_42 AC 323 ms
102,496 KB
testcase_43 AC 277 ms
76,544 KB
testcase_44 AC 429 ms
122,880 KB
testcase_45 AC 441 ms
122,512 KB
testcase_46 AC 484 ms
130,148 KB
testcase_47 AC 190 ms
55,904 KB
testcase_48 AC 484 ms
130,268 KB
testcase_49 AC 456 ms
128,248 KB
testcase_50 AC 165 ms
51,448 KB
testcase_51 AC 278 ms
76,484 KB
testcase_52 AC 493 ms
139,628 KB
testcase_53 AC 495 ms
139,364 KB
testcase_54 AC 490 ms
138,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int n = sc.nextInt();
    long MOD = (long)Math.pow(10, 9) + 7;
    long[][] dp = new long[n][10];
    for(int j = 0; j < 10; j++) {
      dp[0][j] = 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][j - 1] + dp[i - 1][j]) % MOD;
      }
    }
    long ans = 0;
    for(int j = 0; j < 10; j++) {
      ans = (ans + dp[n - 1][j]) % MOD;
    }
    System.out.println(ans);
  }
}
0