結果

問題 No.444 旨味の相乗効果
ユーザー ああいいああいい
提出日時 2022-04-19 20:10:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 608 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 72,712 KB
最終ジャッジ日時 2024-06-10 17:55:56
合計ジャッジ時間 2,413 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,856 KB
testcase_01 AC 41 ms
53,892 KB
testcase_02 AC 40 ms
55,536 KB
testcase_03 AC 41 ms
55,000 KB
testcase_04 WA -
testcase_05 AC 41 ms
54,720 KB
testcase_06 AC 41 ms
54,064 KB
testcase_07 AC 58 ms
66,656 KB
testcase_08 AC 44 ms
55,428 KB
testcase_09 AC 42 ms
54,620 KB
testcase_10 AC 41 ms
54,192 KB
testcase_11 AC 42 ms
54,616 KB
testcase_12 AC 61 ms
69,208 KB
testcase_13 AC 52 ms
63,700 KB
testcase_14 AC 40 ms
54,308 KB
testcase_15 AC 40 ms
53,844 KB
testcase_16 WA -
testcase_17 AC 40 ms
53,700 KB
testcase_18 AC 41 ms
54,060 KB
testcase_19 AC 58 ms
68,480 KB
testcase_20 AC 64 ms
69,128 KB
testcase_21 AC 40 ms
54,300 KB
testcase_22 AC 41 ms
54,212 KB
testcase_23 AC 41 ms
54,264 KB
testcase_24 AC 59 ms
66,232 KB
testcase_25 AC 41 ms
53,716 KB
testcase_26 AC 40 ms
55,256 KB
testcase_27 AC 39 ms
54,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,c = map(int,input().split())
a = list(map(int,input().split()))

from collections import defaultdict
d = defaultdict(int)
for i in a:
    d[i] += 1
P = 10 ** 9 + 7
def f(c,k):
    if k > c:return 0
    c -= 1
    k -= 1
    ans = 1
    for i in range(k):
        ans = ans * (c - i) * pow(k - i,P-2,P) % P
    return ans
    
ans = 0
for i in d:
    inv = pow(i,P-2,P)
    u = 1
    for j in d:
        if j == i:continue
        t = (1 - j * inv) % P
        t = pow(t,P-2,P)
        t = pow(t,d[j],P)
        u = u * t % P
    v = pow(i,c,P)
    ans += (u * f(c,d[i]) - d[i]) * v
    ans %= P
print(ans)
0