結果

問題 No.741 AscNumber(Easy)
ユーザー 👑 KazunKazun
提出日時 2021-02-19 04:27:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 419 ms / 2,000 ms
コード長 206 bytes
コンパイル時間 759 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 226,960 KB
最終ジャッジ日時 2024-09-15 08:29:38
合計ジャッジ時間 8,865 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,256 KB
testcase_01 AC 38 ms
53,452 KB
testcase_02 AC 37 ms
53,500 KB
testcase_03 AC 39 ms
53,588 KB
testcase_04 AC 37 ms
53,072 KB
testcase_05 AC 38 ms
52,876 KB
testcase_06 AC 39 ms
52,336 KB
testcase_07 AC 38 ms
52,196 KB
testcase_08 AC 38 ms
52,760 KB
testcase_09 AC 37 ms
53,404 KB
testcase_10 AC 38 ms
52,684 KB
testcase_11 AC 38 ms
52,740 KB
testcase_12 AC 37 ms
52,272 KB
testcase_13 AC 38 ms
52,692 KB
testcase_14 AC 39 ms
52,464 KB
testcase_15 AC 38 ms
52,732 KB
testcase_16 AC 38 ms
52,248 KB
testcase_17 AC 38 ms
53,252 KB
testcase_18 AC 37 ms
53,212 KB
testcase_19 AC 37 ms
53,164 KB
testcase_20 AC 42 ms
59,600 KB
testcase_21 AC 42 ms
59,888 KB
testcase_22 AC 43 ms
60,284 KB
testcase_23 AC 42 ms
60,648 KB
testcase_24 AC 43 ms
60,344 KB
testcase_25 AC 42 ms
59,508 KB
testcase_26 AC 43 ms
60,904 KB
testcase_27 AC 43 ms
59,748 KB
testcase_28 AC 43 ms
58,764 KB
testcase_29 AC 42 ms
59,548 KB
testcase_30 AC 42 ms
60,604 KB
testcase_31 AC 42 ms
59,824 KB
testcase_32 AC 38 ms
53,084 KB
testcase_33 AC 42 ms
60,256 KB
testcase_34 AC 42 ms
59,656 KB
testcase_35 AC 409 ms
219,636 KB
testcase_36 AC 204 ms
138,888 KB
testcase_37 AC 232 ms
150,144 KB
testcase_38 AC 227 ms
148,996 KB
testcase_39 AC 197 ms
137,524 KB
testcase_40 AC 245 ms
159,664 KB
testcase_41 AC 363 ms
206,956 KB
testcase_42 AC 221 ms
145,560 KB
testcase_43 AC 174 ms
126,336 KB
testcase_44 AC 299 ms
178,448 KB
testcase_45 AC 319 ms
186,876 KB
testcase_46 AC 376 ms
212,716 KB
testcase_47 AC 93 ms
89,660 KB
testcase_48 AC 388 ms
212,768 KB
testcase_49 AC 328 ms
190,316 KB
testcase_50 AC 85 ms
89,468 KB
testcase_51 AC 177 ms
126,472 KB
testcase_52 AC 416 ms
226,960 KB
testcase_53 AC 419 ms
226,932 KB
testcase_54 AC 409 ms
225,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
Mod=10**9+7

DP=[[0]*10 for _ in range(N+1)]
DP[1]=[1]*10

for k in range(2,N+1):
    D=DP[k]
    E=DP[k-1]

    s=0
    for x in range(10):
        D[x]=s=(s+E[x])%Mod

print(sum(DP[N])%Mod)
0