結果

問題 No.741 AscNumber(Easy)
ユーザー soisusoisu
提出日時 2022-04-07 15:39:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,191 ms / 2,000 ms
コード長 319 bytes
コンパイル時間 538 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 226,304 KB
最終ジャッジ日時 2024-05-05 23:18:31
合計ジャッジ時間 18,471 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 36 ms
51,840 KB
testcase_02 AC 34 ms
51,584 KB
testcase_03 AC 34 ms
51,712 KB
testcase_04 AC 35 ms
52,224 KB
testcase_05 AC 36 ms
51,712 KB
testcase_06 AC 35 ms
51,712 KB
testcase_07 AC 36 ms
51,712 KB
testcase_08 AC 35 ms
51,968 KB
testcase_09 AC 36 ms
51,840 KB
testcase_10 AC 36 ms
52,224 KB
testcase_11 AC 35 ms
52,224 KB
testcase_12 AC 36 ms
52,352 KB
testcase_13 AC 36 ms
51,968 KB
testcase_14 AC 34 ms
52,352 KB
testcase_15 AC 35 ms
52,480 KB
testcase_16 AC 36 ms
52,352 KB
testcase_17 AC 36 ms
51,968 KB
testcase_18 AC 38 ms
58,112 KB
testcase_19 AC 40 ms
58,112 KB
testcase_20 AC 50 ms
64,768 KB
testcase_21 AC 46 ms
62,208 KB
testcase_22 AC 52 ms
65,408 KB
testcase_23 AC 50 ms
65,024 KB
testcase_24 AC 47 ms
62,080 KB
testcase_25 AC 48 ms
63,744 KB
testcase_26 AC 50 ms
64,640 KB
testcase_27 AC 47 ms
62,464 KB
testcase_28 AC 46 ms
62,464 KB
testcase_29 AC 48 ms
63,488 KB
testcase_30 AC 51 ms
64,640 KB
testcase_31 AC 52 ms
64,256 KB
testcase_32 AC 44 ms
61,184 KB
testcase_33 AC 50 ms
64,768 KB
testcase_34 AC 52 ms
65,664 KB
testcase_35 AC 1,115 ms
219,136 KB
testcase_36 AC 507 ms
138,496 KB
testcase_37 AC 623 ms
149,796 KB
testcase_38 AC 594 ms
148,592 KB
testcase_39 AC 512 ms
137,216 KB
testcase_40 AC 677 ms
159,440 KB
testcase_41 AC 1,010 ms
206,848 KB
testcase_42 AC 571 ms
145,408 KB
testcase_43 AC 426 ms
126,080 KB
testcase_44 AC 810 ms
178,432 KB
testcase_45 AC 843 ms
186,760 KB
testcase_46 AC 1,028 ms
212,480 KB
testcase_47 AC 227 ms
98,944 KB
testcase_48 AC 1,022 ms
212,560 KB
testcase_49 AC 883 ms
190,208 KB
testcase_50 AC 174 ms
91,484 KB
testcase_51 AC 433 ms
129,024 KB
testcase_52 AC 1,147 ms
226,304 KB
testcase_53 AC 1,155 ms
226,176 KB
testcase_54 AC 1,191 ms
225,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
dp=[[0 for j in range(10)] for _ in range(N+1)]
dp[0][0]=1
mod=10**9+7

for i in range(N):
    for j in range(10):
        for d in range(j,10):
            if 0<d:
                dp[i+1][d]+=dp[i][j]
                dp[i+1][d]%=mod
ans=0
for i in range(N+1):
    ans+=sum(dp[i])
    ans%=mod
print(ans)
0