結果

問題 No.1126 SUM
ユーザー kit84kit84
提出日時 2020-07-25 13:23:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 158 ms / 1,000 ms
コード長 882 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,716 KB
最終ジャッジ日時 2024-06-27 04:01:07
合計ジャッジ時間 5,373 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
22,460 KB
testcase_01 AC 152 ms
22,592 KB
testcase_02 AC 155 ms
22,716 KB
testcase_03 AC 153 ms
22,592 KB
testcase_04 AC 149 ms
22,464 KB
testcase_05 AC 155 ms
22,588 KB
testcase_06 AC 150 ms
22,592 KB
testcase_07 AC 150 ms
22,460 KB
testcase_08 AC 149 ms
22,596 KB
testcase_09 AC 153 ms
22,716 KB
testcase_10 AC 152 ms
22,592 KB
testcase_11 AC 156 ms
22,592 KB
testcase_12 AC 154 ms
22,588 KB
testcase_13 AC 152 ms
22,592 KB
testcase_14 AC 151 ms
22,588 KB
testcase_15 AC 153 ms
22,588 KB
testcase_16 AC 152 ms
22,588 KB
testcase_17 AC 158 ms
22,464 KB
testcase_18 AC 155 ms
22,468 KB
testcase_19 AC 149 ms
22,596 KB
testcase_20 AC 150 ms
22,460 KB
testcase_21 AC 150 ms
22,468 KB
testcase_22 AC 149 ms
22,716 KB
testcase_23 AC 153 ms
22,588 KB
testcase_24 AC 157 ms
22,588 KB
testcase_25 AC 156 ms
22,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#import collections as col
input=sys.stdin.readline

def linput(ty=int, cvt=list):
	return cvt(map(ty,input().rstrip().split()))

def vinput(rep=1, ty=int, cvt=list):
	return cvt(ty(input().rstrip()) for _ in "*"*rep)

def facto(x, y, mod):
	re = 1
	for i in range(y, x+1):
		re *= i
		re %= mod
	#print(re, file=sys.stderr)
	return re

def cmb(n, r, mod):
    if ( r<0 or r>n ):
        return 0
    r = min(r, n-r)
    #return facto(n, n-r+1, mod) * g2[r] % mod
    return g1[n] * g2[r] * g2[n-r] % mod

mod = 10**9+7
NN = 10**5+10
g1 = [1, 1] # factorial
g2 = [1, 1] # factorial^(-1)
inverse = [0, 1] # tmp

for i in range( 2, NN + 1 ):
    g1.append( ( g1[-1] * i ) % mod )
    inverse.append( ( -inverse[mod % i] * (mod//i) ) % mod )
    g2.append( (g2[-1] * inverse[-1]) % mod )


def main():
	A,B = linput()
	M = mod
	
	res = cmb(B+1, A+1, M)
	print(res)


main()
0