結果

問題 No.1126 SUM
ユーザー titiatitia
提出日時 2020-07-25 22:54:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 223 ms / 1,000 ms
コード長 421 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 26,496 KB
最終ジャッジ日時 2024-06-27 18:10:37
合計ジャッジ時間 6,014 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 209 ms
26,368 KB
testcase_01 AC 193 ms
26,368 KB
testcase_02 AC 179 ms
26,368 KB
testcase_03 AC 167 ms
26,368 KB
testcase_04 AC 185 ms
26,368 KB
testcase_05 AC 185 ms
26,368 KB
testcase_06 AC 182 ms
26,368 KB
testcase_07 AC 202 ms
26,496 KB
testcase_08 AC 198 ms
26,496 KB
testcase_09 AC 194 ms
26,496 KB
testcase_10 AC 168 ms
26,368 KB
testcase_11 AC 202 ms
26,368 KB
testcase_12 AC 210 ms
26,368 KB
testcase_13 AC 186 ms
26,368 KB
testcase_14 AC 172 ms
26,368 KB
testcase_15 AC 173 ms
26,496 KB
testcase_16 AC 198 ms
26,496 KB
testcase_17 AC 178 ms
26,368 KB
testcase_18 AC 195 ms
26,496 KB
testcase_19 AC 178 ms
26,368 KB
testcase_20 AC 179 ms
26,496 KB
testcase_21 AC 177 ms
26,368 KB
testcase_22 AC 180 ms
26,368 KB
testcase_23 AC 190 ms
26,368 KB
testcase_24 AC 195 ms
26,496 KB
testcase_25 AC 223 ms
26,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
mod=10**9+7

FACT=[1]
for i in range(1,2*10**5+1):
    FACT.append(FACT[-1]*i%mod)

FACT_INV=[pow(FACT[-1],mod-2,mod)]
for i in range(2*10**5,0,-1):
    FACT_INV.append(FACT_INV[-1]*i%mod)

FACT_INV.reverse()

def Combi(a,b):
    if 0<=b<=a:
        return FACT[a]*FACT_INV[b]*FACT_INV[a-b]%mod
    else:
        return 0

ANS=0
for i in range(N,M+1):
    ANS=(ANS+Combi(i,N))%mod
print(ANS)
0