結果

問題 No.995 タピオカオイシクナーレ
ユーザー kurimupykurimupy
提出日時 2020-06-13 01:19:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 211 ms / 2,000 ms
コード長 426 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 77,736 KB
最終ジャッジ日時 2024-06-24 06:14:55
合計ジャッジ時間 4,397 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,620 KB
testcase_01 AC 43 ms
52,936 KB
testcase_02 AC 42 ms
52,008 KB
testcase_03 AC 42 ms
53,232 KB
testcase_04 AC 42 ms
52,812 KB
testcase_05 AC 42 ms
52,076 KB
testcase_06 AC 43 ms
53,876 KB
testcase_07 AC 42 ms
52,800 KB
testcase_08 AC 42 ms
52,464 KB
testcase_09 AC 42 ms
53,968 KB
testcase_10 AC 42 ms
53,700 KB
testcase_11 AC 51 ms
56,552 KB
testcase_12 AC 50 ms
55,252 KB
testcase_13 AC 49 ms
54,924 KB
testcase_14 AC 49 ms
54,340 KB
testcase_15 AC 49 ms
54,932 KB
testcase_16 AC 179 ms
77,380 KB
testcase_17 AC 211 ms
77,736 KB
testcase_18 AC 200 ms
77,620 KB
testcase_19 AC 188 ms
77,188 KB
testcase_20 AC 185 ms
77,328 KB
testcase_21 AC 195 ms
77,300 KB
testcase_22 AC 193 ms
77,176 KB
testcase_23 AC 192 ms
77,628 KB
testcase_24 AC 197 ms
77,072 KB
testcase_25 AC 169 ms
77,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# タピオカ美味しくなーる
N, M, K, P, Q = map(int, input().split())
value = [int(input()) for i in range(N)]
mod = 10**9 + 7


def rev(X):
    return pow(X, mod-2, mod)


up = 0
down = 2*pow(Q, K, mod)
for i in range(N):
    if i < M:
        up += value[i]*(pow(Q, K, mod)+pow(Q-2*P, K, mod))
        up %= mod
    else:
        up += value[i]*(pow(Q, K, mod)-pow(Q-2*P, K, mod))
ans = up*rev(down) % mod
print(ans)
0