結果

問題 No.1181 Product Sum for All Subsets
ユーザー rlangevinrlangevin
提出日時 2023-04-09 12:26:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 574 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 80,892 KB
最終ジャッジ日時 2024-10-04 13:54:22
合計ジャッジ時間 4,181 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
61,668 KB
testcase_01 AC 43 ms
61,608 KB
testcase_02 AC 49 ms
65,392 KB
testcase_03 AC 44 ms
62,100 KB
testcase_04 AC 42 ms
62,652 KB
testcase_05 AC 42 ms
62,448 KB
testcase_06 AC 45 ms
62,280 KB
testcase_07 AC 43 ms
62,424 KB
testcase_08 AC 42 ms
62,360 KB
testcase_09 AC 44 ms
62,764 KB
testcase_10 AC 45 ms
64,612 KB
testcase_11 AC 41 ms
62,020 KB
testcase_12 AC 164 ms
78,896 KB
testcase_13 AC 82 ms
79,316 KB
testcase_14 AC 161 ms
78,668 KB
testcase_15 AC 142 ms
80,740 KB
testcase_16 AC 171 ms
78,704 KB
testcase_17 AC 108 ms
79,780 KB
testcase_18 AC 159 ms
78,568 KB
testcase_19 AC 154 ms
80,892 KB
testcase_20 AC 168 ms
79,028 KB
testcase_21 AC 116 ms
79,960 KB
testcase_22 AC 90 ms
79,448 KB
testcase_23 AC 65 ms
75,444 KB
testcase_24 AC 84 ms
79,600 KB
testcase_25 AC 114 ms
80,092 KB
testcase_26 AC 52 ms
68,240 KB
testcase_27 AC 43 ms
61,844 KB
testcase_28 AC 189 ms
78,860 KB
testcase_29 AC 140 ms
78,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

n = 202020

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


ans = 0
now = 1
for i in range(N):
    ans += comb(N, i) * now * pow(K, N - i, mod)
    ans %= mod
    now *= K * (K + 1)//2
    now %= mod
print(ans)
    
0