結果

問題 No.741 AscNumber(Easy)
ユーザー Chunky_RBP_ChanChunky_RBP_Chan
提出日時 2022-03-10 12:18:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,046 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 226,996 KB
最終ジャッジ日時 2024-09-14 13:29:56
合計ジャッジ時間 16,808 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 40 ms
51,712 KB
testcase_08 AC 39 ms
51,584 KB
testcase_09 AC 39 ms
52,392 KB
testcase_10 AC 41 ms
52,096 KB
testcase_11 AC 39 ms
52,096 KB
testcase_12 AC 39 ms
51,968 KB
testcase_13 AC 40 ms
52,224 KB
testcase_14 AC 40 ms
52,480 KB
testcase_15 AC 39 ms
52,352 KB
testcase_16 AC 39 ms
52,224 KB
testcase_17 AC 39 ms
52,224 KB
testcase_18 AC 43 ms
58,088 KB
testcase_19 AC 43 ms
58,368 KB
testcase_20 AC 48 ms
61,184 KB
testcase_21 AC 48 ms
60,416 KB
testcase_22 AC 50 ms
61,824 KB
testcase_23 AC 49 ms
61,568 KB
testcase_24 AC 47 ms
61,056 KB
testcase_25 AC 49 ms
61,312 KB
testcase_26 AC 49 ms
61,568 KB
testcase_27 AC 48 ms
60,928 KB
testcase_28 AC 47 ms
60,928 KB
testcase_29 AC 48 ms
61,056 KB
testcase_30 AC 51 ms
61,568 KB
testcase_31 AC 49 ms
61,312 KB
testcase_32 AC 47 ms
60,416 KB
testcase_33 AC 50 ms
61,824 KB
testcase_34 AC 50 ms
61,952 KB
testcase_35 AC 1,008 ms
219,904 KB
testcase_36 AC 469 ms
139,036 KB
testcase_37 AC 541 ms
150,716 KB
testcase_38 AC 543 ms
149,056 KB
testcase_39 AC 471 ms
137,856 KB
testcase_40 AC 607 ms
159,824 KB
testcase_41 AC 923 ms
207,488 KB
testcase_42 AC 515 ms
145,920 KB
testcase_43 AC 392 ms
127,016 KB
testcase_44 AC 733 ms
178,944 KB
testcase_45 AC 787 ms
187,008 KB
testcase_46 AC 954 ms
212,736 KB
testcase_47 AC 208 ms
99,712 KB
testcase_48 AC 954 ms
213,120 KB
testcase_49 AC 823 ms
190,332 KB
testcase_50 AC 160 ms
92,064 KB
testcase_51 AC 407 ms
129,268 KB
testcase_52 AC 1,044 ms
226,996 KB
testcase_53 AC 1,046 ms
226,944 KB
testcase_54 AC 1,035 ms
225,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#AscNumber
#https://yukicoder.me/problems/no/741

N = int(input())
MOD = 10**9+7
dp = [[0]*10 for _ in range(N+1)]
dp[0][0]= 1
for i in range(N):
    for j in range(10):
        for k in range(j,10):
            dp[i+1][k] = (dp[i][j]+dp[i+1][k]) % MOD
ans = sum(dp[-1])%MOD
print(ans)
0