結果

問題 No.766 金魚すくい
ユーザー 👑 KazunKazun
提出日時 2021-02-12 02:52:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 133 ms / 1,500 ms
コード長 553 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 94,572 KB
最終ジャッジ日時 2024-07-18 12:54:34
合計ジャッジ時間 5,310 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,736 KB
testcase_01 AC 34 ms
53,844 KB
testcase_02 AC 32 ms
52,684 KB
testcase_03 AC 31 ms
52,808 KB
testcase_04 AC 31 ms
53,576 KB
testcase_05 AC 30 ms
53,360 KB
testcase_06 AC 34 ms
53,432 KB
testcase_07 AC 32 ms
52,312 KB
testcase_08 AC 36 ms
52,332 KB
testcase_09 AC 32 ms
52,744 KB
testcase_10 AC 31 ms
52,732 KB
testcase_11 AC 33 ms
52,828 KB
testcase_12 AC 32 ms
52,692 KB
testcase_13 AC 43 ms
64,544 KB
testcase_14 AC 43 ms
63,332 KB
testcase_15 AC 42 ms
62,732 KB
testcase_16 AC 42 ms
62,924 KB
testcase_17 AC 43 ms
63,664 KB
testcase_18 AC 39 ms
60,924 KB
testcase_19 AC 42 ms
62,892 KB
testcase_20 AC 44 ms
62,824 KB
testcase_21 AC 44 ms
62,788 KB
testcase_22 AC 44 ms
62,896 KB
testcase_23 AC 129 ms
93,872 KB
testcase_24 AC 124 ms
94,044 KB
testcase_25 AC 133 ms
94,572 KB
testcase_26 AC 122 ms
92,500 KB
testcase_27 AC 131 ms
94,368 KB
testcase_28 AC 123 ms
92,272 KB
testcase_29 AC 124 ms
93,980 KB
testcase_30 AC 125 ms
92,588 KB
testcase_31 AC 132 ms
94,376 KB
testcase_32 AC 127 ms
93,892 KB
testcase_33 AC 110 ms
89,036 KB
testcase_34 AC 111 ms
88,320 KB
testcase_35 AC 38 ms
60,540 KB
testcase_36 AC 39 ms
60,204 KB
testcase_37 AC 121 ms
93,996 KB
testcase_38 AC 122 ms
93,848 KB
testcase_39 AC 124 ms
94,288 KB
testcase_40 AC 120 ms
94,196 KB
testcase_41 AC 122 ms
92,420 KB
testcase_42 AC 121 ms
92,164 KB
testcase_43 AC 33 ms
52,756 KB
testcase_44 AC 33 ms
53,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def nCr(n,r):
    return (F[n]*G[r]*G[n-r])%Mod
N,M,P=map(int,input().split())
V=list(map(int,input().split()))
V.sort(reverse=True)

Mod=10**9+7
Inv_100=pow(100,Mod-2,Mod)
p=(1-P*Inv_100)%Mod

F=[1]*(N+M)
for i in range(1,N+M):
    F[i]=(F[i-1]*i)%Mod

G=[1]*(N+M)
G[-1]=pow(F[-1],Mod-2,Mod)
for i in range(N+M-2,-1,-1):
    G[i]=(G[i+1]*(i+1))%Mod

X=0
Prob=0
base=pow(1-p,M,Mod)
v=0
for k in range(N):
    s=(nCr(M+k-1,k)*pow(p,k,Mod)*base)%Mod

    Prob+=s
    Prob%=Mod

    X+=v*s
    X%=Mod

    v+=V[k]
    v%=Mod

X+=v*(1-Prob)
X%=Mod

print(X)
0