結果

問題 No.741 AscNumber(Easy)
ユーザー moharan627moharan627
提出日時 2021-08-10 17:39:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 864 ms / 2,000 ms
コード長 885 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 226,900 KB
最終ジャッジ日時 2024-09-22 19:07:11
合計ジャッジ時間 14,410 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,744 KB
testcase_01 AC 38 ms
52,528 KB
testcase_02 AC 37 ms
52,900 KB
testcase_03 AC 38 ms
52,596 KB
testcase_04 AC 37 ms
53,712 KB
testcase_05 AC 39 ms
52,956 KB
testcase_06 AC 38 ms
52,824 KB
testcase_07 AC 38 ms
53,912 KB
testcase_08 AC 39 ms
53,644 KB
testcase_09 AC 40 ms
53,712 KB
testcase_10 AC 39 ms
53,820 KB
testcase_11 AC 39 ms
53,224 KB
testcase_12 AC 39 ms
52,736 KB
testcase_13 AC 38 ms
54,068 KB
testcase_14 AC 38 ms
53,700 KB
testcase_15 AC 38 ms
52,864 KB
testcase_16 AC 38 ms
53,564 KB
testcase_17 AC 39 ms
52,880 KB
testcase_18 AC 42 ms
58,988 KB
testcase_19 AC 42 ms
58,628 KB
testcase_20 AC 46 ms
62,412 KB
testcase_21 AC 44 ms
59,868 KB
testcase_22 AC 48 ms
61,752 KB
testcase_23 AC 46 ms
61,724 KB
testcase_24 AC 44 ms
60,960 KB
testcase_25 AC 47 ms
61,848 KB
testcase_26 AC 47 ms
62,024 KB
testcase_27 AC 45 ms
61,636 KB
testcase_28 AC 46 ms
60,944 KB
testcase_29 AC 47 ms
61,540 KB
testcase_30 AC 46 ms
61,672 KB
testcase_31 AC 46 ms
61,336 KB
testcase_32 AC 43 ms
59,972 KB
testcase_33 AC 46 ms
61,840 KB
testcase_34 AC 47 ms
62,076 KB
testcase_35 AC 800 ms
219,992 KB
testcase_36 AC 386 ms
138,880 KB
testcase_37 AC 446 ms
149,760 KB
testcase_38 AC 429 ms
148,864 KB
testcase_39 AC 378 ms
137,540 KB
testcase_40 AC 495 ms
159,616 KB
testcase_41 AC 739 ms
207,276 KB
testcase_42 AC 414 ms
145,792 KB
testcase_43 AC 313 ms
126,520 KB
testcase_44 AC 581 ms
179,012 KB
testcase_45 AC 625 ms
186,912 KB
testcase_46 AC 762 ms
212,984 KB
testcase_47 AC 178 ms
99,328 KB
testcase_48 AC 787 ms
212,736 KB
testcase_49 AC 652 ms
190,592 KB
testcase_50 AC 149 ms
91,648 KB
testcase_51 AC 342 ms
129,024 KB
testcase_52 AC 861 ms
226,900 KB
testcase_53 AC 864 ms
226,688 KB
testcase_54 AC 855 ms
225,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
INF = float('inf')
#10**20,2**63,float('inf')
MOD = 10**9 + 7
MOD2 = 998244353
#from collections import defaultdict
def solve():
    def II(): return int(sys.stdin.readline())
    def LI(): return list(map(int, sys.stdin.readline().split()))
    def LC(): return list(input())
    def IC(): return [int(c) for c in input()]
    def MI(): return map(int, sys.stdin.readline().split())
    N = II()
    Less = [[0] * 10 for _ in range(N + 1)]
    Less[0][0] = 1
    for i in range(N):
        # Less[i+1] += Less[i]の遷移
        # (i-1桁までの数)+(0~9)
        for n in range(10):
            for s in range(0,n+1):
                Less[i + 1][n] += Less[i][s]
                Less[i+1][n] %= MOD
        #print("Less:",Less[i+1])
    print(sum(Less[N]) % MOD)
    return
solve()
#sys.setrecursionlimit(10 ** 6)#再帰関数ではコメントにしないこと!!
0