結果

問題 No.741 AscNumber(Easy)
ユーザー Daiki OkayamaDaiki Okayama
提出日時 2022-10-30 09:23:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 960 ms / 2,000 ms
コード長 331 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,636 KB
実行使用メモリ 225,940 KB
最終ジャッジ日時 2024-07-07 03:19:49
合計ジャッジ時間 15,288 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,192 KB
testcase_01 AC 33 ms
52,220 KB
testcase_02 AC 34 ms
53,964 KB
testcase_03 AC 32 ms
51,828 KB
testcase_04 AC 30 ms
52,660 KB
testcase_05 AC 30 ms
52,812 KB
testcase_06 AC 31 ms
52,724 KB
testcase_07 AC 31 ms
53,904 KB
testcase_08 AC 31 ms
52,160 KB
testcase_09 AC 32 ms
53,352 KB
testcase_10 AC 31 ms
52,132 KB
testcase_11 AC 30 ms
52,940 KB
testcase_12 AC 31 ms
52,208 KB
testcase_13 AC 30 ms
51,740 KB
testcase_14 AC 31 ms
52,876 KB
testcase_15 AC 29 ms
52,988 KB
testcase_16 AC 31 ms
52,744 KB
testcase_17 AC 32 ms
52,704 KB
testcase_18 AC 35 ms
59,180 KB
testcase_19 AC 34 ms
58,736 KB
testcase_20 AC 41 ms
62,676 KB
testcase_21 AC 40 ms
61,556 KB
testcase_22 AC 42 ms
63,488 KB
testcase_23 AC 41 ms
63,280 KB
testcase_24 AC 39 ms
62,648 KB
testcase_25 AC 41 ms
62,972 KB
testcase_26 AC 41 ms
63,212 KB
testcase_27 AC 40 ms
62,956 KB
testcase_28 AC 48 ms
63,412 KB
testcase_29 AC 43 ms
63,160 KB
testcase_30 AC 42 ms
63,840 KB
testcase_31 AC 41 ms
63,032 KB
testcase_32 AC 38 ms
62,128 KB
testcase_33 AC 41 ms
64,068 KB
testcase_34 AC 44 ms
65,120 KB
testcase_35 AC 941 ms
219,148 KB
testcase_36 AC 427 ms
138,448 KB
testcase_37 AC 520 ms
149,688 KB
testcase_38 AC 509 ms
148,388 KB
testcase_39 AC 417 ms
137,192 KB
testcase_40 AC 548 ms
159,060 KB
testcase_41 AC 844 ms
206,404 KB
testcase_42 AC 465 ms
145,032 KB
testcase_43 AC 350 ms
126,188 KB
testcase_44 AC 658 ms
178,028 KB
testcase_45 AC 714 ms
186,528 KB
testcase_46 AC 872 ms
212,268 KB
testcase_47 AC 194 ms
99,208 KB
testcase_48 AC 859 ms
212,104 KB
testcase_49 AC 729 ms
189,756 KB
testcase_50 AC 145 ms
91,360 KB
testcase_51 AC 371 ms
128,760 KB
testcase_52 AC 947 ms
225,772 KB
testcase_53 AC 960 ms
225,940 KB
testcase_54 AC 946 ms
224,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
n = int(input())

# dp[i][j] := i桁目まで確定時,桁の末尾がjのもの
dp = [[0 for _ in range(10)] for _ in range(n + 1)]
dp[0][0] = 1

for i in range(n):
    for j in range(10):
        for x in range(j, 10):
            dp[i+1][x] += dp[i][j]
            dp[i+1][x] %= MOD

print(sum(dp[-1]) % MOD)
0