結果

問題 No.1126 SUM
ユーザー tanon710tanon710
提出日時 2020-07-24 22:11:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 120 ms / 1,000 ms
コード長 309 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 71,168 KB
最終ジャッジ日時 2024-06-25 21:40:27
合計ジャッジ時間 3,399 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
71,168 KB
testcase_01 AC 84 ms
66,040 KB
testcase_02 AC 68 ms
64,116 KB
testcase_03 AC 58 ms
62,124 KB
testcase_04 AC 82 ms
67,072 KB
testcase_05 AC 79 ms
65,444 KB
testcase_06 AC 72 ms
65,172 KB
testcase_07 AC 102 ms
69,168 KB
testcase_08 AC 98 ms
69,724 KB
testcase_09 AC 90 ms
68,764 KB
testcase_10 AC 56 ms
62,864 KB
testcase_11 AC 101 ms
68,984 KB
testcase_12 AC 112 ms
70,332 KB
testcase_13 AC 80 ms
65,964 KB
testcase_14 AC 60 ms
63,188 KB
testcase_15 AC 58 ms
63,332 KB
testcase_16 AC 95 ms
68,484 KB
testcase_17 AC 66 ms
63,416 KB
testcase_18 AC 92 ms
68,448 KB
testcase_19 AC 74 ms
64,216 KB
testcase_20 AC 73 ms
65,416 KB
testcase_21 AC 75 ms
64,900 KB
testcase_22 AC 73 ms
65,304 KB
testcase_23 AC 90 ms
68,268 KB
testcase_24 AC 93 ms
69,120 KB
testcase_25 AC 120 ms
63,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=10**9+7
n,m=map(int,input().split())
ans=0
tmp=1
for i in range(n):
    tmp*=(m-i)
    tmp%=mod
ans+=tmp
for i in range(m,n,-1):
    tmp*=pow(i,mod-2,mod)
    tmp*=(i-n)
    tmp%=mod
    ans+=tmp
    ans%=mod
div=1
for i in range(1,n+1):
    div*=i
    div%=mod
div=pow(div,mod-2,mod)
print((ans*div)%mod)
0