結果

問題 No.1126 SUM
ユーザー vwxyzvwxyz
提出日時 2023-12-08 05:42:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 96 ms / 1,000 ms
コード長 3,107 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 18,944 KB
最終ジャッジ日時 2024-09-27 02:40:31
合計ジャッジ時間 3,035 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
17,408 KB
testcase_01 AC 96 ms
18,560 KB
testcase_02 AC 52 ms
13,824 KB
testcase_03 AC 44 ms
13,184 KB
testcase_04 AC 88 ms
18,816 KB
testcase_05 AC 75 ms
17,152 KB
testcase_06 AC 56 ms
14,464 KB
testcase_07 AC 68 ms
16,512 KB
testcase_08 AC 69 ms
16,768 KB
testcase_09 AC 77 ms
17,280 KB
testcase_10 AC 78 ms
17,664 KB
testcase_11 AC 67 ms
16,256 KB
testcase_12 AC 77 ms
17,920 KB
testcase_13 AC 55 ms
14,720 KB
testcase_14 AC 62 ms
15,744 KB
testcase_15 AC 56 ms
14,976 KB
testcase_16 AC 78 ms
17,664 KB
testcase_17 AC 58 ms
14,848 KB
testcase_18 AC 65 ms
16,256 KB
testcase_19 AC 82 ms
18,176 KB
testcase_20 AC 53 ms
14,592 KB
testcase_21 AC 83 ms
18,176 KB
testcase_22 AC 68 ms
16,256 KB
testcase_23 AC 81 ms
17,920 KB
testcase_24 AC 66 ms
15,744 KB
testcase_25 AC 85 ms
18,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline

def Divisors(N):
    divisors=[]
    for i in range(1,N+1):
        if i**2>=N:
            break
        elif N%i==0:
            divisors.append(i)
    if i**2==N:
        divisors+=[i]+[N//i for i in divisors[::-1]]
    else:
        divisors+=[N//i for i in divisors[::-1]]
    return divisors

def Extended_Euclid(n,m):
    stack=[]
    while m:
        stack.append((n,m))
        n,m=m,n%m
    if n>=0:
        x,y=1,0
    else:
        x,y=-1,0
    for i in range(len(stack)-1,-1,-1):
        n,m=stack[i]
        x,y=y,x-(n//m)*y
    return x,y

class MOD:
    def __init__(self,p,e=None):
        self.p=p
        self.e=e
        if self.e==None:
            self.mod=self.p
        else:
            self.mod=self.p**self.e

    def Pow(self,a,n):
        a%=self.mod
        if n>=0:
            return pow(a,n,self.mod)
        else:
            #assert math.gcd(a,self.mod)==1
            x=Extended_Euclid(a,self.mod)[0]
            return pow(x,-n,self.mod)

    def Build_Fact(self,N):
        assert N>=0
        self.factorial=[1]
        if self.e==None:
            for i in range(1,N+1):
                self.factorial.append(self.factorial[-1]*i%self.mod)
        else:
            self.cnt=[0]*(N+1)
            for i in range(1,N+1):
                self.cnt[i]=self.cnt[i-1]
                ii=i
                while ii%self.p==0:
                    ii//=self.p
                    self.cnt[i]+=1
                self.factorial.append(self.factorial[-1]*ii%self.mod)
        self.factorial_inve=[None]*(N+1)
        self.factorial_inve[-1]=self.Pow(self.factorial[-1],-1)
        for i in range(N-1,-1,-1):
            ii=i+1
            while ii%self.p==0:
                ii//=self.p
            self.factorial_inve[i]=(self.factorial_inve[i+1]*ii)%self.mod

    def Build_Inverse(self,N):
        self.inverse=[None]*(N+1)
        assert self.p>N
        self.inverse[1]=1
        for n in range(2,N+1):
            if n%self.p==0:
                continue
            a,b=divmod(self.mod,n)
            self.inverse[n]=(-a*self.inverse[b])%self.mod
    
    def Inverse(self,n):
        return self.inverse[n]

    def Fact(self,N):
        if N<0:
            return 0
        retu=self.factorial[N]
        if self.e!=None and self.cnt[N]:
            retu*=pow(self.p,self.cnt[N],self.mod)%self.mod
            retu%=self.mod
        return retu

    def Fact_Inve(self,N):
        if self.e!=None and self.cnt[N]:
            return None
        return self.factorial_inve[N]

    def Comb(self,N,K,divisible_count=False):
        if K<0 or K>N:
            return 0
        retu=self.factorial[N]*self.factorial_inve[K]%self.mod*self.factorial_inve[N-K]%self.mod
        if self.e!=None:
            cnt=self.cnt[N]-self.cnt[N-K]-self.cnt[K]
            if divisible_count:
                return retu,cnt
            else:
                retu*=pow(self.p,cnt,self.mod)
                retu%=self.mod
        return retu

N,M=map(int,readline().split())
mod=10**9+7
MD=MOD(mod)
MD.Build_Fact(M+1)
ans=MD.Comb(M+1,N+1)
print(ans)
0