結果

問題 No.741 AscNumber(Easy)
ユーザー lllllll88938494lllllll88938494
提出日時 2022-10-07 22:42:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 373 ms / 2,000 ms
コード長 288 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 227,064 KB
最終ジャッジ日時 2024-06-12 19:57:02
合計ジャッジ時間 7,892 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,384 KB
testcase_01 AC 30 ms
52,068 KB
testcase_02 AC 31 ms
52,840 KB
testcase_03 AC 31 ms
53,220 KB
testcase_04 AC 31 ms
52,108 KB
testcase_05 AC 30 ms
52,756 KB
testcase_06 AC 37 ms
51,936 KB
testcase_07 AC 30 ms
53,060 KB
testcase_08 AC 30 ms
52,076 KB
testcase_09 AC 31 ms
52,764 KB
testcase_10 AC 32 ms
52,608 KB
testcase_11 AC 35 ms
52,276 KB
testcase_12 AC 33 ms
52,620 KB
testcase_13 AC 34 ms
53,360 KB
testcase_14 AC 30 ms
52,620 KB
testcase_15 AC 29 ms
52,336 KB
testcase_16 AC 31 ms
53,272 KB
testcase_17 AC 31 ms
53,000 KB
testcase_18 AC 33 ms
52,816 KB
testcase_19 AC 34 ms
52,248 KB
testcase_20 AC 40 ms
61,148 KB
testcase_21 AC 39 ms
60,792 KB
testcase_22 AC 39 ms
60,920 KB
testcase_23 AC 40 ms
61,224 KB
testcase_24 AC 38 ms
59,952 KB
testcase_25 AC 37 ms
61,360 KB
testcase_26 AC 37 ms
60,520 KB
testcase_27 AC 35 ms
60,108 KB
testcase_28 AC 35 ms
59,988 KB
testcase_29 AC 37 ms
60,956 KB
testcase_30 AC 38 ms
60,716 KB
testcase_31 AC 37 ms
61,564 KB
testcase_32 AC 32 ms
52,204 KB
testcase_33 AC 37 ms
61,132 KB
testcase_34 AC 37 ms
61,648 KB
testcase_35 AC 354 ms
220,032 KB
testcase_36 AC 186 ms
139,200 KB
testcase_37 AC 206 ms
150,200 KB
testcase_38 AC 209 ms
149,044 KB
testcase_39 AC 206 ms
138,004 KB
testcase_40 AC 237 ms
159,972 KB
testcase_41 AC 326 ms
207,468 KB
testcase_42 AC 195 ms
146,000 KB
testcase_43 AC 158 ms
126,580 KB
testcase_44 AC 263 ms
178,972 KB
testcase_45 AC 285 ms
187,016 KB
testcase_46 AC 338 ms
213,004 KB
testcase_47 AC 86 ms
89,804 KB
testcase_48 AC 348 ms
212,616 KB
testcase_49 AC 285 ms
190,632 KB
testcase_50 AC 77 ms
89,516 KB
testcase_51 AC 159 ms
126,888 KB
testcase_52 AC 365 ms
227,064 KB
testcase_53 AC 373 ms
226,820 KB
testcase_54 AC 361 ms
225,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
dp=[[0]*10 for i in range(n+2)]
dp[1][0] = 1
mod=10**9+7

for i in range(1,n+2):
    for j in range(1,10):
        dp[i][j] = dp[i-1][j-1] + dp[i-1][j]
        dp[i][j]%=mod
        dp[i-1][j] += dp[i-1][j-1]
        dp[i-1][j]%=mod
    dp[i][0] = 1

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