結果

問題 No.995 タピオカオイシクナーレ
ユーザー AEnAEn
提出日時 2022-11-12 00:32:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 365 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 77,080 KB
最終ジャッジ日時 2024-09-13 17:26:56
合計ジャッジ時間 3,952 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 37 ms
52,480 KB
testcase_04 AC 37 ms
52,152 KB
testcase_05 AC 40 ms
51,968 KB
testcase_06 AC 39 ms
52,352 KB
testcase_07 AC 38 ms
51,712 KB
testcase_08 AC 37 ms
51,968 KB
testcase_09 AC 37 ms
51,712 KB
testcase_10 AC 38 ms
51,840 KB
testcase_11 AC 47 ms
54,656 KB
testcase_12 AC 46 ms
54,272 KB
testcase_13 AC 45 ms
54,400 KB
testcase_14 AC 42 ms
53,120 KB
testcase_15 AC 44 ms
53,760 KB
testcase_16 AC 109 ms
77,056 KB
testcase_17 AC 109 ms
76,948 KB
testcase_18 AC 110 ms
76,768 KB
testcase_19 AC 117 ms
77,080 KB
testcase_20 AC 112 ms
76,668 KB
testcase_21 AC 109 ms
77,056 KB
testcase_22 AC 110 ms
76,704 KB
testcase_23 AC 110 ms
76,800 KB
testcase_24 AC 108 ms
77,056 KB
testcase_25 AC 110 ms
76,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, K, p, q = map(int, input().split())
b = [int(input()) for _ in range(N)]
mod = 10**9+7

move = (p*pow(q,mod-2,mod))%mod
nmove = ((q-p)*pow(q,mod-2,mod))%mod
inv = pow(2,mod-2,mod)
res = 0
p = pow(nmove-move,K,mod)
for i in range(M):
    res += (b[i]*(1+p)*inv)%mod
    res %= mod
for i in range(M,N):
    res += (b[i]*(1-p)*inv)%mod
    res %= mod
print(res)
0