結果

問題 No.741 AscNumber(Easy)
ユーザー ああいいああいい
提出日時 2022-01-09 19:20:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,025 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 226,828 KB
最終ジャッジ日時 2024-11-14 10:29:40
合計ジャッジ時間 16,939 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,492 KB
testcase_01 AC 39 ms
52,204 KB
testcase_02 AC 38 ms
53,184 KB
testcase_03 AC 38 ms
52,320 KB
testcase_04 AC 38 ms
52,796 KB
testcase_05 AC 38 ms
52,428 KB
testcase_06 AC 39 ms
52,932 KB
testcase_07 AC 39 ms
52,272 KB
testcase_08 AC 40 ms
52,572 KB
testcase_09 AC 40 ms
52,352 KB
testcase_10 AC 39 ms
53,048 KB
testcase_11 AC 38 ms
53,560 KB
testcase_12 AC 38 ms
52,400 KB
testcase_13 AC 39 ms
53,036 KB
testcase_14 AC 38 ms
53,152 KB
testcase_15 AC 38 ms
53,572 KB
testcase_16 AC 38 ms
53,616 KB
testcase_17 AC 39 ms
52,812 KB
testcase_18 AC 39 ms
53,572 KB
testcase_19 AC 41 ms
58,564 KB
testcase_20 AC 47 ms
61,484 KB
testcase_21 AC 45 ms
60,804 KB
testcase_22 AC 48 ms
62,240 KB
testcase_23 AC 47 ms
61,984 KB
testcase_24 AC 47 ms
61,336 KB
testcase_25 AC 49 ms
62,280 KB
testcase_26 AC 49 ms
61,552 KB
testcase_27 AC 45 ms
62,184 KB
testcase_28 AC 46 ms
61,312 KB
testcase_29 AC 47 ms
61,284 KB
testcase_30 AC 47 ms
62,336 KB
testcase_31 AC 47 ms
63,112 KB
testcase_32 AC 46 ms
62,012 KB
testcase_33 AC 47 ms
62,052 KB
testcase_34 AC 48 ms
63,632 KB
testcase_35 AC 982 ms
219,792 KB
testcase_36 AC 457 ms
139,108 KB
testcase_37 AC 533 ms
150,108 KB
testcase_38 AC 523 ms
148,748 KB
testcase_39 AC 452 ms
137,864 KB
testcase_40 AC 603 ms
159,736 KB
testcase_41 AC 905 ms
207,388 KB
testcase_42 AC 502 ms
145,968 KB
testcase_43 AC 381 ms
126,664 KB
testcase_44 AC 716 ms
178,940 KB
testcase_45 AC 768 ms
187,012 KB
testcase_46 AC 935 ms
212,784 KB
testcase_47 AC 204 ms
99,192 KB
testcase_48 AC 946 ms
213,296 KB
testcase_49 AC 794 ms
190,468 KB
testcase_50 AC 155 ms
91,864 KB
testcase_51 AC 400 ms
129,552 KB
testcase_52 AC 1,019 ms
226,792 KB
testcase_53 AC 1,020 ms
226,828 KB
testcase_54 AC 1,025 ms
225,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
dp = [[0] * 10 for _ in range(N)]
P = 10 ** 9 + 7

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+1][k] + dp[i][j]) % P
print(sum(dp[-1])%P)
0