結果

問題 No.741 AscNumber(Easy)
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-12-12 21:52:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 536 ms / 2,000 ms
コード長 1,292 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 89,088 KB
最終ジャッジ日時 2024-07-21 10:05:04
合計ジャッジ時間 9,852 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 34 ms
10,624 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 32 ms
10,624 KB
testcase_11 AC 31 ms
10,624 KB
testcase_12 AC 32 ms
10,752 KB
testcase_13 AC 33 ms
10,752 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 31 ms
10,624 KB
testcase_16 AC 30 ms
10,624 KB
testcase_17 AC 32 ms
10,624 KB
testcase_18 AC 31 ms
10,624 KB
testcase_19 AC 31 ms
10,624 KB
testcase_20 AC 32 ms
10,752 KB
testcase_21 AC 32 ms
10,752 KB
testcase_22 AC 32 ms
10,880 KB
testcase_23 AC 32 ms
10,752 KB
testcase_24 AC 32 ms
10,752 KB
testcase_25 AC 31 ms
10,624 KB
testcase_26 AC 31 ms
10,624 KB
testcase_27 AC 31 ms
10,624 KB
testcase_28 AC 30 ms
10,624 KB
testcase_29 AC 30 ms
10,624 KB
testcase_30 AC 32 ms
10,624 KB
testcase_31 AC 32 ms
10,752 KB
testcase_32 AC 31 ms
10,624 KB
testcase_33 AC 31 ms
10,752 KB
testcase_34 AC 32 ms
10,752 KB
testcase_35 AC 515 ms
85,248 KB
testcase_36 AC 238 ms
43,136 KB
testcase_37 AC 279 ms
48,896 KB
testcase_38 AC 272 ms
48,256 KB
testcase_39 AC 240 ms
42,496 KB
testcase_40 AC 306 ms
54,016 KB
testcase_41 AC 471 ms
78,848 KB
testcase_42 AC 261 ms
46,720 KB
testcase_43 AC 204 ms
36,608 KB
testcase_44 AC 374 ms
63,872 KB
testcase_45 AC 405 ms
68,096 KB
testcase_46 AC 486 ms
81,664 KB
testcase_47 AC 108 ms
22,656 KB
testcase_48 AC 491 ms
81,536 KB
testcase_49 AC 412 ms
69,888 KB
testcase_50 AC 83 ms
18,688 KB
testcase_51 AC 207 ms
38,016 KB
testcase_52 AC 536 ms
88,960 KB
testcase_53 AC 533 ms
89,088 KB
testcase_54 AC 533 ms
88,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Combinatorics:
	def __init__(self, n: int, mod: int) -> None:
		self.n = n
		self.mod = mod
		self.fa = [1] * (self.n + 1)
		self.fi = [1] * (self.n + 1)

		for i in range(1, self.n + 1):
			self.fa[i] = self.fa[i - 1] * i % self.mod

		self.fi[-1] = pow(self.fa[-1], self.mod - 2, self.mod)

		for i in range(self.n, 0, -1):
			self.fi[i - 1] = self.fi[i] * i % self.mod

	def comb(self, n: int, r: int) -> int:
		if n < r:return 0
		if n < 0 or r < 0:return 0
		return self.fa[n] * self.fi[r] % self.mod * self.fi[n - r] % self.mod

	def perm(self, n: int, r: int) -> int:
		if n < r:return 0
		if n < 0 or r < 0:return 0
		return self.fa[n] * self.fi[n - r] % self.mod
		
	def combr(self, n: int, r: int) -> int:
		if n == r == 0:return 1
		return self.comb(n + r - 1, r)
"""
非負整数のうち、10進数表示をしたときに桁が昇順に並んでいるものをAscNumberと定義します。
例えば0, 1, 123, 12234, 334はAscNumberです。はAscNumberではありません。

正の整数が与えられるので、10^N未満のAscNumberがいくつあるかを求めてください。
ただし答えは大きくなるので、10 ** 9 + 7で割った余りを出力してください。
"""
n = int(input())
C = Combinatorics(n + 9, 10**9 + 7)
print(C.comb(n + 9, 9))
0