結果

問題 No.741 AscNumber(Easy)
ユーザー convexineqconvexineq
提出日時 2021-03-19 17:06:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 207 ms / 2,000 ms
コード長 215 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 76,360 KB
最終ジャッジ日時 2024-11-18 11:51:53
合計ジャッジ時間 5,907 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,408 KB
testcase_01 AC 35 ms
52,236 KB
testcase_02 AC 35 ms
53,416 KB
testcase_03 AC 34 ms
52,156 KB
testcase_04 AC 33 ms
53,148 KB
testcase_05 AC 36 ms
53,076 KB
testcase_06 AC 37 ms
53,420 KB
testcase_07 AC 35 ms
52,964 KB
testcase_08 AC 34 ms
52,712 KB
testcase_09 AC 34 ms
52,672 KB
testcase_10 AC 34 ms
52,772 KB
testcase_11 AC 33 ms
52,476 KB
testcase_12 AC 34 ms
52,648 KB
testcase_13 AC 34 ms
53,424 KB
testcase_14 AC 33 ms
52,836 KB
testcase_15 AC 32 ms
52,964 KB
testcase_16 AC 33 ms
52,604 KB
testcase_17 AC 34 ms
53,556 KB
testcase_18 AC 34 ms
52,304 KB
testcase_19 AC 33 ms
53,632 KB
testcase_20 AC 38 ms
59,924 KB
testcase_21 AC 39 ms
60,172 KB
testcase_22 AC 39 ms
59,748 KB
testcase_23 AC 40 ms
59,620 KB
testcase_24 AC 38 ms
60,736 KB
testcase_25 AC 40 ms
59,200 KB
testcase_26 AC 38 ms
59,544 KB
testcase_27 AC 38 ms
60,324 KB
testcase_28 AC 38 ms
60,868 KB
testcase_29 AC 39 ms
59,884 KB
testcase_30 AC 39 ms
59,952 KB
testcase_31 AC 39 ms
60,280 KB
testcase_32 AC 34 ms
53,548 KB
testcase_33 AC 38 ms
59,824 KB
testcase_34 AC 38 ms
61,204 KB
testcase_35 AC 197 ms
75,820 KB
testcase_36 AC 114 ms
76,044 KB
testcase_37 AC 126 ms
76,360 KB
testcase_38 AC 119 ms
75,708 KB
testcase_39 AC 108 ms
75,964 KB
testcase_40 AC 131 ms
75,756 KB
testcase_41 AC 181 ms
75,892 KB
testcase_42 AC 117 ms
75,844 KB
testcase_43 AC 97 ms
76,308 KB
testcase_44 AC 154 ms
75,676 KB
testcase_45 AC 164 ms
75,844 KB
testcase_46 AC 193 ms
75,872 KB
testcase_47 AC 67 ms
75,620 KB
testcase_48 AC 190 ms
75,872 KB
testcase_49 AC 168 ms
75,676 KB
testcase_50 AC 63 ms
75,988 KB
testcase_51 AC 100 ms
75,824 KB
testcase_52 AC 205 ms
75,976 KB
testcase_53 AC 205 ms
75,848 KB
testcase_54 AC 207 ms
75,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
dp = [0]*10
dp[0] = 1
MOD = 10**9+7
for i in range(n):
    ndp = [0]*10
    v = 0
    for j in range(10):
        v += dp[j]
        ndp[j] += v
        ndp[j] %= MOD
    dp = ndp
print(sum(dp)%MOD)
0