結果

問題 No.741 AscNumber(Easy)
ユーザー soisusoisu
提出日時 2022-03-20 15:07:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,466 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 226,432 KB
最終ジャッジ日時 2024-10-06 22:48:42
合計ジャッジ時間 22,201 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 38 ms
51,584 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 37 ms
52,096 KB
testcase_06 AC 38 ms
51,712 KB
testcase_07 AC 37 ms
52,480 KB
testcase_08 AC 38 ms
52,352 KB
testcase_09 AC 38 ms
52,224 KB
testcase_10 AC 38 ms
52,224 KB
testcase_11 AC 41 ms
58,112 KB
testcase_12 AC 41 ms
58,624 KB
testcase_13 AC 41 ms
58,240 KB
testcase_14 AC 42 ms
58,624 KB
testcase_15 AC 41 ms
58,496 KB
testcase_16 AC 41 ms
58,496 KB
testcase_17 AC 42 ms
58,752 KB
testcase_18 AC 42 ms
59,136 KB
testcase_19 AC 43 ms
58,752 KB
testcase_20 AC 51 ms
63,872 KB
testcase_21 AC 47 ms
61,952 KB
testcase_22 AC 53 ms
64,512 KB
testcase_23 AC 51 ms
64,128 KB
testcase_24 AC 46 ms
61,440 KB
testcase_25 AC 49 ms
63,232 KB
testcase_26 AC 51 ms
63,616 KB
testcase_27 AC 47 ms
62,080 KB
testcase_28 AC 49 ms
62,464 KB
testcase_29 AC 50 ms
62,848 KB
testcase_30 AC 52 ms
64,512 KB
testcase_31 AC 51 ms
63,616 KB
testcase_32 AC 45 ms
60,284 KB
testcase_33 AC 51 ms
63,872 KB
testcase_34 AC 53 ms
65,536 KB
testcase_35 AC 1,403 ms
219,264 KB
testcase_36 AC 650 ms
138,952 KB
testcase_37 AC 740 ms
149,888 KB
testcase_38 AC 741 ms
148,480 KB
testcase_39 AC 633 ms
137,548 KB
testcase_40 AC 832 ms
159,488 KB
testcase_41 AC 1,282 ms
206,720 KB
testcase_42 AC 706 ms
145,280 KB
testcase_43 AC 536 ms
126,572 KB
testcase_44 AC 1,027 ms
178,360 KB
testcase_45 AC 1,088 ms
186,588 KB
testcase_46 AC 1,337 ms
212,448 KB
testcase_47 AC 283 ms
99,072 KB
testcase_48 AC 1,348 ms
212,684 KB
testcase_49 AC 1,120 ms
189,952 KB
testcase_50 AC 208 ms
91,648 KB
testcase_51 AC 551 ms
128,768 KB
testcase_52 AC 1,453 ms
226,304 KB
testcase_53 AC 1,466 ms
226,432 KB
testcase_54 AC 1,444 ms
225,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
dp=[[0 for j in range(10)] for i 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(1,10):
            if j<=d:
                dp[i+1][d]+=dp[i][j]
                dp[i+1][d]%=mod

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