結果

問題 No.741 AscNumber(Easy)
ユーザー GrenacheGrenache
提出日時 2019-04-29 18:18:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 425 ms / 2,000 ms
コード長 993 bytes
コンパイル時間 3,324 ms
コンパイル使用メモリ 77,536 KB
実行使用メモリ 120,292 KB
最終ジャッジ日時 2024-06-07 00:27:59
合計ジャッジ時間 15,301 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
39,960 KB
testcase_01 AC 120 ms
41,352 KB
testcase_02 AC 124 ms
41,268 KB
testcase_03 AC 124 ms
41,096 KB
testcase_04 AC 121 ms
41,068 KB
testcase_05 AC 120 ms
40,020 KB
testcase_06 AC 124 ms
41,192 KB
testcase_07 AC 120 ms
40,256 KB
testcase_08 AC 121 ms
41,512 KB
testcase_09 AC 125 ms
41,172 KB
testcase_10 AC 118 ms
41,488 KB
testcase_11 AC 121 ms
41,288 KB
testcase_12 AC 122 ms
41,116 KB
testcase_13 AC 125 ms
40,900 KB
testcase_14 AC 126 ms
41,084 KB
testcase_15 AC 124 ms
41,048 KB
testcase_16 AC 123 ms
41,200 KB
testcase_17 AC 120 ms
41,320 KB
testcase_18 AC 122 ms
41,304 KB
testcase_19 AC 123 ms
40,992 KB
testcase_20 AC 122 ms
41,216 KB
testcase_21 AC 114 ms
40,328 KB
testcase_22 AC 126 ms
41,336 KB
testcase_23 AC 127 ms
41,312 KB
testcase_24 AC 119 ms
41,116 KB
testcase_25 AC 123 ms
41,328 KB
testcase_26 AC 110 ms
39,912 KB
testcase_27 AC 121 ms
41,116 KB
testcase_28 AC 124 ms
41,152 KB
testcase_29 AC 121 ms
41,212 KB
testcase_30 AC 121 ms
41,376 KB
testcase_31 AC 121 ms
41,200 KB
testcase_32 AC 110 ms
40,212 KB
testcase_33 AC 124 ms
41,068 KB
testcase_34 AC 129 ms
41,272 KB
testcase_35 AC 404 ms
116,444 KB
testcase_36 AC 249 ms
74,196 KB
testcase_37 AC 260 ms
79,316 KB
testcase_38 AC 256 ms
78,172 KB
testcase_39 AC 249 ms
73,172 KB
testcase_40 AC 293 ms
84,828 KB
testcase_41 AC 367 ms
109,236 KB
testcase_42 AC 263 ms
77,528 KB
testcase_43 AC 237 ms
67,444 KB
testcase_44 AC 322 ms
94,160 KB
testcase_45 AC 343 ms
98,384 KB
testcase_46 AC 393 ms
112,932 KB
testcase_47 AC 182 ms
55,520 KB
testcase_48 AC 393 ms
112,604 KB
testcase_49 AC 367 ms
100,892 KB
testcase_50 AC 152 ms
49,708 KB
testcase_51 AC 233 ms
68,624 KB
testcase_52 AC 423 ms
120,292 KB
testcase_53 AC 419 ms
120,276 KB
testcase_54 AC 425 ms
118,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


public class Main_yukicoder741 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		final int MOD = 1_000_000_007;

		int n = sc.nextInt();

		long[][] dp = new long[10][n];
		for (int i = 0; i < 10; i++) {
			dp[i][0] = 1;
		}
		
		for (int i = 0; i < n - 1; i++) {
			for (int j = 0; j < 10; j++) {
				for (int k = j; k < 10; k++) {
					dp[k][i + 1] += dp[j][i];
//					dp[k][i + 1] %= MOD;
					if (dp[k][i + 1] >= MOD) {
						dp[k][i + 1] -= MOD;
					}
				}
			}
		}
		
		long ans = 0;
		for (int i = 0; i < 10; i++) {
			ans += dp[i][n - 1];
			ans %= MOD;
		}
		
		pr.println(ans);
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);
			
		solve();
			
		pr.close();
		sc.close();
	}

	static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0