結果

問題 No.823 Many Shifts Easy
ユーザー rlangevinrlangevin
提出日時 2023-03-09 12:24:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 608 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 84,416 KB
最終ジャッジ日時 2024-09-18 02:50:39
合計ジャッジ時間 1,810 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
63,236 KB
testcase_01 AC 48 ms
61,852 KB
testcase_02 AC 53 ms
63,824 KB
testcase_03 AC 150 ms
82,812 KB
testcase_04 AC 49 ms
62,732 KB
testcase_05 AC 118 ms
81,188 KB
testcase_06 AC 171 ms
81,380 KB
testcase_07 AC 49 ms
62,564 KB
testcase_08 AC 173 ms
84,416 KB
testcase_09 AC 74 ms
75,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10 ** 9 + 7

n = 205050

fact = [1] * (n + 1)
invfact = [1] * (n + 1)
for i in range(1, n):
    fact[i + 1] = ((i+1) * fact[i]) % mod
invfact[n] = pow(fact[n], mod - 2, mod)
for i in range(n - 1, -1, -1):
    invfact[i] = invfact[i + 1] * (i + 1) % mod

def comb(n, r):
    if n < 0 or r < 0 or n - r < 0:
        return 0
    return fact[n] * invfact[r] * invfact[n - r] % mod


N, K = map(int, input().split())
ans = comb(N - 1, K) * fact[K] * N
for i in range(1, N):
    ans += comb(N - 1, K) * fact[K] * i
    ans += comb(N - 2, K - 2) * fact[K] * pow(2, mod - 2, mod) * i
    ans %= mod
print(ans)
0