結果

問題 No.741 AscNumber(Easy)
ユーザー stngstng
提出日時 2022-05-28 16:39:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 913 ms / 2,000 ms
コード長 238 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 227,348 KB
最終ジャッジ日時 2024-09-20 23:05:10
合計ジャッジ時間 15,254 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 36 ms
52,352 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 37 ms
51,712 KB
testcase_08 AC 37 ms
51,712 KB
testcase_09 AC 38 ms
52,224 KB
testcase_10 AC 42 ms
52,096 KB
testcase_11 AC 41 ms
52,224 KB
testcase_12 AC 40 ms
51,968 KB
testcase_13 AC 41 ms
52,540 KB
testcase_14 AC 39 ms
52,224 KB
testcase_15 AC 37 ms
52,096 KB
testcase_16 AC 38 ms
52,224 KB
testcase_17 AC 38 ms
52,352 KB
testcase_18 AC 43 ms
58,368 KB
testcase_19 AC 42 ms
58,240 KB
testcase_20 AC 49 ms
61,056 KB
testcase_21 AC 47 ms
59,648 KB
testcase_22 AC 48 ms
61,696 KB
testcase_23 AC 49 ms
61,696 KB
testcase_24 AC 46 ms
59,776 KB
testcase_25 AC 49 ms
61,312 KB
testcase_26 AC 48 ms
61,312 KB
testcase_27 AC 45 ms
60,672 KB
testcase_28 AC 46 ms
59,904 KB
testcase_29 AC 51 ms
61,056 KB
testcase_30 AC 49 ms
61,312 KB
testcase_31 AC 49 ms
61,184 KB
testcase_32 AC 45 ms
59,648 KB
testcase_33 AC 50 ms
60,928 KB
testcase_34 AC 51 ms
61,440 KB
testcase_35 AC 854 ms
219,776 KB
testcase_36 AC 415 ms
139,076 KB
testcase_37 AC 480 ms
150,188 KB
testcase_38 AC 476 ms
149,120 KB
testcase_39 AC 409 ms
137,856 KB
testcase_40 AC 531 ms
160,256 KB
testcase_41 AC 807 ms
207,316 KB
testcase_42 AC 445 ms
146,080 KB
testcase_43 AC 345 ms
126,848 KB
testcase_44 AC 641 ms
178,944 KB
testcase_45 AC 691 ms
187,136 KB
testcase_46 AC 836 ms
213,200 KB
testcase_47 AC 193 ms
99,596 KB
testcase_48 AC 817 ms
212,608 KB
testcase_49 AC 690 ms
190,464 KB
testcase_50 AC 147 ms
92,124 KB
testcase_51 AC 348 ms
129,580 KB
testcase_52 AC 882 ms
227,348 KB
testcase_53 AC 881 ms
226,984 KB
testcase_54 AC 913 ms
225,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
mod = 10**9+7

dp = [[0]*10 for i in range(n+1)]
dp[0][0] = 1
for i in range(n):
    for j in range(10):
        for k in range(j+1):
            dp[i+1][j] += dp[i][k]
            dp[i+1][j] %= mod

print(sum(dp[n])%mod)
0