結果

問題 No.1126 SUM
ユーザー flippergoflippergo
提出日時 2024-12-15 21:17:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 1,000 ms
コード長 399 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 69,112 KB
最終ジャッジ日時 2024-12-15 21:17:46
合計ジャッジ時間 2,506 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
69,112 KB
testcase_01 AC 48 ms
66,624 KB
testcase_02 AC 44 ms
62,864 KB
testcase_03 AC 42 ms
61,252 KB
testcase_04 AC 47 ms
66,696 KB
testcase_05 AC 45 ms
65,548 KB
testcase_06 AC 45 ms
63,824 KB
testcase_07 AC 49 ms
67,888 KB
testcase_08 AC 48 ms
67,400 KB
testcase_09 AC 47 ms
67,172 KB
testcase_10 AC 45 ms
63,140 KB
testcase_11 AC 48 ms
67,392 KB
testcase_12 AC 51 ms
69,024 KB
testcase_13 AC 47 ms
64,640 KB
testcase_14 AC 45 ms
62,856 KB
testcase_15 AC 42 ms
62,224 KB
testcase_16 AC 58 ms
67,036 KB
testcase_17 AC 44 ms
63,248 KB
testcase_18 AC 48 ms
66,812 KB
testcase_19 AC 46 ms
65,408 KB
testcase_20 AC 44 ms
63,376 KB
testcase_21 AC 46 ms
65,400 KB
testcase_22 AC 45 ms
64,636 KB
testcase_23 AC 47 ms
67,064 KB
testcase_24 AC 48 ms
66,560 KB
testcase_25 AC 44 ms
61,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
MOD = 10**9+7
A = [1]*(M+1)
for i in range(2,M+1):
    A[i] = (A[i-1]*i)%MOD
B = [1]*(M+1)
B[M] = pow(A[M],MOD-2,MOD)
for i in range(M-1,1,-1):
    B[i] = (B[i+1]*(i+1))%MOD
def comb(n,k):
    if k<0 or k>n:
        return 0
    if k==0 or k==n:
        return 1
    return (A[n]*B[k]*B[n-k])%MOD
ans = 0
for i in range(N,M+1):
    ans = (ans+comb(i,N))%MOD
print(ans)
0