結果

問題 No.741 AscNumber(Easy)
ユーザー N-noa21N-noa21
提出日時 2024-09-28 14:51:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 628 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 77,936 KB
最終ジャッジ日時 2024-09-28 14:51:57
合計ジャッジ時間 11,638 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,272 KB
testcase_01 AC 35 ms
53,892 KB
testcase_02 AC 37 ms
53,120 KB
testcase_03 AC 34 ms
52,624 KB
testcase_04 AC 35 ms
52,084 KB
testcase_05 AC 37 ms
53,480 KB
testcase_06 AC 34 ms
52,212 KB
testcase_07 AC 33 ms
53,332 KB
testcase_08 AC 32 ms
52,672 KB
testcase_09 AC 36 ms
53,472 KB
testcase_10 AC 31 ms
52,208 KB
testcase_11 AC 31 ms
52,260 KB
testcase_12 AC 33 ms
53,296 KB
testcase_13 AC 33 ms
52,484 KB
testcase_14 AC 38 ms
53,184 KB
testcase_15 AC 34 ms
53,088 KB
testcase_16 AC 35 ms
53,004 KB
testcase_17 AC 37 ms
58,352 KB
testcase_18 AC 36 ms
58,216 KB
testcase_19 AC 38 ms
58,592 KB
testcase_20 AC 44 ms
63,376 KB
testcase_21 AC 44 ms
61,384 KB
testcase_22 AC 45 ms
64,876 KB
testcase_23 AC 46 ms
64,588 KB
testcase_24 AC 42 ms
62,116 KB
testcase_25 AC 44 ms
62,648 KB
testcase_26 AC 46 ms
63,788 KB
testcase_27 AC 41 ms
62,944 KB
testcase_28 AC 43 ms
61,592 KB
testcase_29 AC 48 ms
63,496 KB
testcase_30 AC 46 ms
62,596 KB
testcase_31 AC 46 ms
63,776 KB
testcase_32 AC 42 ms
60,740 KB
testcase_33 AC 46 ms
62,952 KB
testcase_34 AC 45 ms
63,656 KB
testcase_35 AC 585 ms
77,564 KB
testcase_36 AC 287 ms
76,568 KB
testcase_37 AC 309 ms
76,656 KB
testcase_38 AC 343 ms
76,680 KB
testcase_39 AC 274 ms
77,108 KB
testcase_40 AC 354 ms
76,708 KB
testcase_41 AC 560 ms
77,580 KB
testcase_42 AC 303 ms
76,648 KB
testcase_43 AC 237 ms
76,380 KB
testcase_44 AC 451 ms
77,232 KB
testcase_45 AC 452 ms
77,212 KB
testcase_46 AC 549 ms
77,316 KB
testcase_47 AC 144 ms
76,408 KB
testcase_48 AC 548 ms
77,680 KB
testcase_49 AC 472 ms
77,316 KB
testcase_50 AC 115 ms
76,072 KB
testcase_51 AC 248 ms
76,432 KB
testcase_52 AC 613 ms
77,516 KB
testcase_53 AC 628 ms
77,936 KB
testcase_54 AC 604 ms
77,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
length = N+1
N = "1" + "0" * N
#print(N)
mod = 10**9+7
dp = [0] * 10

for i in range(length):

    ndp = [0] * 10

    for j in range(10):#dp[j]

        for k in range(j,10):
            ndp[k] += dp[j]
            ndp[k] %= mod

    if i:

        for j in range(1,10):
            ndp[j] += 1
            ndp[j] %= mod
    dp = ndp
ans = 0
for i in dp:
    ans += i
    ans %= mod
print((ans+1)%mod)
0