結果

問題 No.741 AscNumber(Easy)
ユーザー lloyzlloyz
提出日時 2022-06-21 22:41:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,107 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 2,013 ms
コンパイル使用メモリ 81,432 KB
実行使用メモリ 226,392 KB
最終ジャッジ日時 2024-10-15 00:14:46
合計ジャッジ時間 18,742 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,924 KB
testcase_01 AC 33 ms
52,064 KB
testcase_02 AC 33 ms
52,896 KB
testcase_03 AC 34 ms
52,316 KB
testcase_04 AC 34 ms
52,444 KB
testcase_05 AC 36 ms
53,816 KB
testcase_06 AC 36 ms
53,248 KB
testcase_07 AC 35 ms
52,940 KB
testcase_08 AC 35 ms
53,352 KB
testcase_09 AC 35 ms
53,432 KB
testcase_10 AC 36 ms
52,496 KB
testcase_11 AC 35 ms
52,416 KB
testcase_12 AC 35 ms
52,320 KB
testcase_13 AC 36 ms
52,804 KB
testcase_14 AC 35 ms
53,244 KB
testcase_15 AC 36 ms
52,680 KB
testcase_16 AC 36 ms
52,620 KB
testcase_17 AC 36 ms
52,076 KB
testcase_18 AC 36 ms
53,764 KB
testcase_19 AC 39 ms
59,012 KB
testcase_20 AC 46 ms
62,960 KB
testcase_21 AC 45 ms
63,100 KB
testcase_22 AC 50 ms
63,700 KB
testcase_23 AC 52 ms
63,652 KB
testcase_24 AC 44 ms
61,832 KB
testcase_25 AC 47 ms
63,144 KB
testcase_26 AC 49 ms
63,824 KB
testcase_27 AC 47 ms
62,520 KB
testcase_28 AC 46 ms
62,336 KB
testcase_29 AC 46 ms
62,468 KB
testcase_30 AC 50 ms
63,552 KB
testcase_31 AC 48 ms
62,808 KB
testcase_32 AC 44 ms
61,124 KB
testcase_33 AC 48 ms
63,372 KB
testcase_34 AC 48 ms
65,092 KB
testcase_35 AC 1,004 ms
219,252 KB
testcase_36 AC 493 ms
138,524 KB
testcase_37 AC 554 ms
149,600 KB
testcase_38 AC 544 ms
148,260 KB
testcase_39 AC 477 ms
137,244 KB
testcase_40 AC 621 ms
158,940 KB
testcase_41 AC 933 ms
206,524 KB
testcase_42 AC 509 ms
145,160 KB
testcase_43 AC 387 ms
126,096 KB
testcase_44 AC 730 ms
178,520 KB
testcase_45 AC 785 ms
186,288 KB
testcase_46 AC 967 ms
212,296 KB
testcase_47 AC 212 ms
98,988 KB
testcase_48 AC 950 ms
212,004 KB
testcase_49 AC 806 ms
189,844 KB
testcase_50 AC 156 ms
91,480 KB
testcase_51 AC 402 ms
128,964 KB
testcase_52 AC 1,107 ms
226,392 KB
testcase_53 AC 1,054 ms
225,932 KB
testcase_54 AC 1,038 ms
224,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

mod = 10**9 + 7
DP = [[0 for _ in range(10)] for _ in range(n)]
for i in range(10):
    DP[0][i] = 1
for i in range(n - 1):
    for j in range(10):
        for k in range(j, 10):
            DP[i + 1][k] += DP[i][j]
            DP[i + 1][k] %= mod
ans = 0
for i in range(10):
    ans += DP[-1][i]
    ans %= mod
print(ans)
0