結果

問題 No.741 AscNumber(Easy)
ユーザー ninja-kidninja-kid
提出日時 2022-06-07 22:59:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,622 ms / 2,000 ms
コード長 531 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 227,840 KB
最終ジャッジ日時 2024-09-21 05:00:00
合計ジャッジ時間 24,378 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,760 KB
testcase_01 AC 46 ms
53,760 KB
testcase_02 AC 45 ms
53,888 KB
testcase_03 AC 43 ms
53,888 KB
testcase_04 AC 43 ms
53,888 KB
testcase_05 AC 43 ms
53,504 KB
testcase_06 AC 44 ms
54,144 KB
testcase_07 AC 43 ms
54,144 KB
testcase_08 AC 47 ms
54,272 KB
testcase_09 AC 42 ms
54,016 KB
testcase_10 AC 43 ms
54,016 KB
testcase_11 AC 45 ms
54,144 KB
testcase_12 AC 44 ms
53,632 KB
testcase_13 AC 44 ms
54,144 KB
testcase_14 AC 42 ms
53,888 KB
testcase_15 AC 42 ms
54,528 KB
testcase_16 AC 42 ms
54,272 KB
testcase_17 AC 43 ms
54,400 KB
testcase_18 AC 45 ms
59,648 KB
testcase_19 AC 46 ms
59,520 KB
testcase_20 AC 54 ms
63,104 KB
testcase_21 AC 53 ms
62,592 KB
testcase_22 AC 56 ms
63,872 KB
testcase_23 AC 58 ms
63,616 KB
testcase_24 AC 55 ms
62,336 KB
testcase_25 AC 56 ms
62,720 KB
testcase_26 AC 55 ms
63,488 KB
testcase_27 AC 53 ms
62,976 KB
testcase_28 AC 51 ms
62,592 KB
testcase_29 AC 54 ms
62,976 KB
testcase_30 AC 58 ms
63,616 KB
testcase_31 AC 56 ms
63,360 KB
testcase_32 AC 54 ms
62,080 KB
testcase_33 AC 59 ms
63,360 KB
testcase_34 AC 57 ms
63,616 KB
testcase_35 AC 1,566 ms
220,928 KB
testcase_36 AC 698 ms
139,904 KB
testcase_37 AC 834 ms
150,912 KB
testcase_38 AC 814 ms
150,272 KB
testcase_39 AC 697 ms
138,496 KB
testcase_40 AC 933 ms
160,640 KB
testcase_41 AC 1,412 ms
208,384 KB
testcase_42 AC 777 ms
146,560 KB
testcase_43 AC 574 ms
126,848 KB
testcase_44 AC 1,119 ms
179,712 KB
testcase_45 AC 1,243 ms
187,648 KB
testcase_46 AC 1,473 ms
213,888 KB
testcase_47 AC 311 ms
100,096 KB
testcase_48 AC 1,465 ms
213,760 KB
testcase_49 AC 1,248 ms
191,744 KB
testcase_50 AC 226 ms
92,160 KB
testcase_51 AC 611 ms
130,176 KB
testcase_52 AC 1,585 ms
227,840 KB
testcase_53 AC 1,622 ms
227,584 KB
testcase_54 AC 1,580 ms
226,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

from collections import deque
from heapq import heappop, heappush


dpos4 = ((1, 0), (0, 1), (-1, 0), (0, -1))
def main():
  N = int(input())
  S = "9" * N
  mod = 10 ** 9 + 7
  # i桁目まで確定していて、最後の数字がjのAscNumberの数
  dp = [[0] * 10 for _ in range(N + 1)]
  dp[0][0] = 1
  for i in range(N):
    for j in range(10):
      for d in range(j, 10):
        dp[i + 1][d] += dp[i][j]
        dp[i + 1][d] %= mod

  print(sum(dp[-1]) % mod)

if __name__ == '__main__':
  main()
0