結果

問題 No.766 金魚すくい
ユーザー qibqib
提出日時 2022-12-29 01:06:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 144 ms / 1,500 ms
コード長 852 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 99,072 KB
最終ジャッジ日時 2024-05-03 05:59:22
合計ジャッジ時間 6,445 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 45 ms
52,224 KB
testcase_02 AC 42 ms
52,224 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 42 ms
52,352 KB
testcase_05 AC 41 ms
52,224 KB
testcase_06 AC 41 ms
51,968 KB
testcase_07 AC 41 ms
51,968 KB
testcase_08 AC 44 ms
52,096 KB
testcase_09 AC 42 ms
52,096 KB
testcase_10 AC 44 ms
52,224 KB
testcase_11 AC 43 ms
52,224 KB
testcase_12 AC 43 ms
52,096 KB
testcase_13 AC 64 ms
64,640 KB
testcase_14 AC 62 ms
65,024 KB
testcase_15 AC 65 ms
64,256 KB
testcase_16 AC 65 ms
64,384 KB
testcase_17 AC 63 ms
64,768 KB
testcase_18 AC 56 ms
61,056 KB
testcase_19 AC 65 ms
64,640 KB
testcase_20 AC 64 ms
64,384 KB
testcase_21 AC 62 ms
63,872 KB
testcase_22 AC 62 ms
64,896 KB
testcase_23 AC 140 ms
98,432 KB
testcase_24 AC 133 ms
98,304 KB
testcase_25 AC 144 ms
99,072 KB
testcase_26 AC 136 ms
96,768 KB
testcase_27 AC 141 ms
98,688 KB
testcase_28 AC 135 ms
96,640 KB
testcase_29 AC 138 ms
98,304 KB
testcase_30 AC 140 ms
96,768 KB
testcase_31 AC 144 ms
98,944 KB
testcase_32 AC 137 ms
98,048 KB
testcase_33 AC 113 ms
91,904 KB
testcase_34 AC 114 ms
91,776 KB
testcase_35 AC 57 ms
62,080 KB
testcase_36 AC 57 ms
61,696 KB
testcase_37 AC 135 ms
98,432 KB
testcase_38 AC 135 ms
98,816 KB
testcase_39 AC 135 ms
98,560 KB
testcase_40 AC 135 ms
98,560 KB
testcase_41 AC 128 ms
96,896 KB
testcase_42 AC 126 ms
96,640 KB
testcase_43 AC 43 ms
51,968 KB
testcase_44 AC 42 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7

n, m, p = map(int, input().split())

l = max(n + m, 100)
fact = [1 for _ in range(l + 1)]
inv = [1 for _ in range(l + 1)]
ifact = [1 for _ in range(l + 1)]
for x in range(2, l + 1):
  fact[x] = (fact[x - 1] * x) % MOD
  inv[x] = (- (MOD // x) * inv[MOD % x]) % MOD
  ifact[x] = (ifact[x - 1] * inv[x]) % MOD

v = list(map(int, input().split()))
v.sort(reverse=True)

s = [0 for _ in range(n + 1)]
for i in range(n):
  s[i + 1] = (s[i] + v[i]) % MOD

pm = pow(p * inv[100], m, MOD)
prob = [0 for _ in range(n + 2)]
v = (100 - p) * inv[100] % MOD
cur = 1
for i in range(1, n + 1):
	prob[i] = fact[i + m - 2] * ifact[i - 1] * ifact[m - 1] % MOD
	prob[i] = (prob[i] * pm * cur) % MOD
	cur = (cur * v) % MOD

prob[n + 1] = (1 - sum(prob) % MOD) % MOD

ans = 0
for i in range(1, n + 2):
  ans = (ans + prob[i] * s[i - 1]) % MOD

print(ans)
0