結果

問題 No.1126 SUM
ユーザー brthyyjpbrthyyjp
提出日時 2021-01-03 21:17:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 1,000 ms
コード長 461 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 92,288 KB
最終ジャッジ日時 2024-10-13 15:19:24
合計ジャッジ時間 3,224 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
90,800 KB
testcase_01 AC 73 ms
91,776 KB
testcase_02 AC 72 ms
90,808 KB
testcase_03 AC 67 ms
91,332 KB
testcase_04 AC 74 ms
91,556 KB
testcase_05 AC 75 ms
91,648 KB
testcase_06 AC 75 ms
91,776 KB
testcase_07 AC 76 ms
91,108 KB
testcase_08 AC 77 ms
91,348 KB
testcase_09 AC 78 ms
91,640 KB
testcase_10 AC 72 ms
92,160 KB
testcase_11 AC 77 ms
91,008 KB
testcase_12 AC 78 ms
90,740 KB
testcase_13 AC 76 ms
90,968 KB
testcase_14 AC 69 ms
91,648 KB
testcase_15 AC 68 ms
91,776 KB
testcase_16 AC 78 ms
91,580 KB
testcase_17 AC 72 ms
91,476 KB
testcase_18 AC 80 ms
90,688 KB
testcase_19 AC 74 ms
92,032 KB
testcase_20 AC 77 ms
90,788 KB
testcase_21 AC 73 ms
92,288 KB
testcase_22 AC 72 ms
91,392 KB
testcase_23 AC 78 ms
92,224 KB
testcase_24 AC 79 ms
90,844 KB
testcase_25 AC 72 ms
91,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = 10**6
mod = 10**9+7
fac = [1]*(N+1)
finv = [1]*(N+1)
for i in range(N):
    fac[i+1] = fac[i] * (i+1) % mod
finv[-1] = pow(fac[-1], mod-2, mod)
for i in reversed(range(N)):
    finv[i] = finv[i+1] * (i+1) % mod

def cmb1(n, r, mod):
    if r <0 or r > n:
        return 0
    r = min(r, n-r)
    return fac[n] * finv[r] * finv[n-r] % mod

n, m = map(int, input().split())
ans = 0
for i in range(n, m+1):
    ans += cmb1(i, n, mod)
    ans %= mod
print(ans)
0