結果

問題 No.741 AscNumber(Easy)
ユーザー GrenacheGrenache
提出日時 2019-04-29 18:16:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 362 ms / 2,000 ms
コード長 925 bytes
コンパイル時間 3,588 ms
コンパイル使用メモリ 77,128 KB
実行使用メモリ 120,472 KB
最終ジャッジ日時 2024-06-07 00:24:22
合計ジャッジ時間 14,321 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,556 KB
testcase_01 AC 124 ms
41,472 KB
testcase_02 AC 125 ms
41,180 KB
testcase_03 AC 109 ms
41,156 KB
testcase_04 AC 124 ms
41,692 KB
testcase_05 AC 110 ms
40,168 KB
testcase_06 AC 125 ms
41,420 KB
testcase_07 AC 126 ms
41,028 KB
testcase_08 AC 126 ms
41,704 KB
testcase_09 AC 124 ms
41,472 KB
testcase_10 AC 124 ms
41,920 KB
testcase_11 AC 124 ms
41,144 KB
testcase_12 AC 118 ms
41,280 KB
testcase_13 AC 122 ms
41,568 KB
testcase_14 AC 125 ms
41,468 KB
testcase_15 AC 119 ms
41,636 KB
testcase_16 AC 118 ms
41,832 KB
testcase_17 AC 121 ms
41,548 KB
testcase_18 AC 105 ms
41,356 KB
testcase_19 AC 123 ms
41,160 KB
testcase_20 AC 119 ms
41,292 KB
testcase_21 AC 124 ms
41,616 KB
testcase_22 AC 130 ms
41,644 KB
testcase_23 AC 125 ms
41,396 KB
testcase_24 AC 127 ms
41,556 KB
testcase_25 AC 124 ms
41,356 KB
testcase_26 AC 128 ms
41,736 KB
testcase_27 AC 124 ms
41,588 KB
testcase_28 AC 109 ms
41,732 KB
testcase_29 AC 110 ms
41,292 KB
testcase_30 AC 123 ms
41,532 KB
testcase_31 AC 112 ms
41,304 KB
testcase_32 AC 122 ms
41,276 KB
testcase_33 AC 127 ms
41,672 KB
testcase_34 AC 124 ms
41,400 KB
testcase_35 AC 352 ms
116,492 KB
testcase_36 AC 225 ms
74,088 KB
testcase_37 AC 253 ms
79,848 KB
testcase_38 AC 234 ms
79,264 KB
testcase_39 AC 234 ms
73,448 KB
testcase_40 AC 269 ms
85,200 KB
testcase_41 AC 330 ms
110,152 KB
testcase_42 AC 229 ms
77,568 KB
testcase_43 AC 199 ms
67,328 KB
testcase_44 AC 286 ms
95,364 KB
testcase_45 AC 296 ms
99,452 KB
testcase_46 AC 342 ms
113,244 KB
testcase_47 AC 174 ms
55,388 KB
testcase_48 AC 341 ms
112,448 KB
testcase_49 AC 309 ms
101,340 KB
testcase_50 AC 161 ms
50,416 KB
testcase_51 AC 220 ms
68,700 KB
testcase_52 AC 359 ms
120,472 KB
testcase_53 AC 362 ms
120,280 KB
testcase_54 AC 362 ms
120,012 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;
				}
			}
		}
		
		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