結果

問題 No.444 旨味の相乗効果
ユーザー ああいいああいい
提出日時 2022-04-19 19:54:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 434 bytes
コンパイル時間 921 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 69,860 KB
最終ジャッジ日時 2024-06-10 17:43:49
合計ジャッジ時間 2,626 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,256 KB
testcase_01 AC 36 ms
54,316 KB
testcase_02 WA -
testcase_03 AC 37 ms
54,040 KB
testcase_04 WA -
testcase_05 AC 39 ms
55,036 KB
testcase_06 AC 39 ms
55,256 KB
testcase_07 AC 53 ms
66,728 KB
testcase_08 AC 42 ms
54,596 KB
testcase_09 AC 39 ms
54,796 KB
testcase_10 AC 40 ms
54,136 KB
testcase_11 AC 40 ms
54,860 KB
testcase_12 AC 55 ms
68,224 KB
testcase_13 AC 48 ms
63,432 KB
testcase_14 AC 36 ms
54,684 KB
testcase_15 AC 35 ms
53,544 KB
testcase_16 WA -
testcase_17 AC 36 ms
55,068 KB
testcase_18 AC 37 ms
54,968 KB
testcase_19 AC 54 ms
68,100 KB
testcase_20 AC 60 ms
67,752 KB
testcase_21 AC 38 ms
54,248 KB
testcase_22 AC 36 ms
53,696 KB
testcase_23 AC 40 ms
54,904 KB
testcase_24 AC 54 ms
67,016 KB
testcase_25 AC 35 ms
53,604 KB
testcase_26 AC 37 ms
54,776 KB
testcase_27 AC 37 ms
55,184 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
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 - d[i]) * v
    ans %= P
print(ans)
0