結果

問題 No.1126 SUM
ユーザー 双六双六
提出日時 2020-08-05 22:55:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 1,000 ms
コード長 946 bytes
コンパイル時間 1,024 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 63,376 KB
最終ジャッジ日時 2024-09-17 19:59:56
合計ジャッジ時間 2,960 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
62,884 KB
testcase_01 AC 45 ms
63,108 KB
testcase_02 AC 41 ms
61,744 KB
testcase_03 AC 40 ms
62,408 KB
testcase_04 AC 45 ms
63,148 KB
testcase_05 AC 43 ms
61,860 KB
testcase_06 AC 40 ms
61,532 KB
testcase_07 AC 43 ms
61,832 KB
testcase_08 AC 44 ms
62,660 KB
testcase_09 AC 44 ms
62,572 KB
testcase_10 AC 51 ms
62,548 KB
testcase_11 AC 48 ms
62,324 KB
testcase_12 AC 48 ms
62,084 KB
testcase_13 AC 44 ms
61,544 KB
testcase_14 AC 44 ms
62,892 KB
testcase_15 AC 41 ms
62,040 KB
testcase_16 AC 45 ms
63,224 KB
testcase_17 AC 42 ms
61,472 KB
testcase_18 AC 43 ms
62,252 KB
testcase_19 AC 44 ms
62,572 KB
testcase_20 AC 41 ms
61,984 KB
testcase_21 AC 44 ms
62,472 KB
testcase_22 AC 42 ms
63,376 KB
testcase_23 AC 44 ms
62,664 KB
testcase_24 AC 41 ms
62,240 KB
testcase_25 AC 46 ms
62,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

class Combination(object):
	def __init__(self, N, con):
		self.fac = [0] * (N + 1)
		self.inv = [0] * (N + 1)
		self.finv = [0] * (N + 1)
		self.fac[0], self.fac[1] = 1, 1
		self.inv[1] = 1
		self.finv[0], self.finv[1] = 1, 1

		# 前計算
		for i in range(2, N + 1):
			self.fac[i] = self.fac[i - 1] * i % con
			self.inv[i] = self.inv[con % i] * (con - (con // i)) % con
			self.finv[i] = self.finv[i - 1] * self.inv[i] % con

	def com(self, N, k):
		return (self.fac[N] * self.finv[k] * self.finv[N - k]) % con

	def Catalan(self, k):
		return (fac[2 * k] * finv[k] * finv[k + 1]) % con

#処理内容
def main():
	N, M = getlist()
	C = Combination(M + 1, con)
	ans = C.com(M + 1, N + 1)
	print(ans)


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