結果

問題 No.995 タピオカオイシクナーレ
ユーザー merom686merom686
提出日時 2020-02-21 21:51:12
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 13 ms / 2,000 ms
コード長 892 bytes
コンパイル時間 742 ms
コンパイル使用メモリ 74,088 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-08 22:41:15
合計ジャッジ時間 1,863 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <cmath>
using namespace std;
using ll = long long;

constexpr int P = 1000000007;

ll powmod(ll n, ll k) {
    ll r = 1, t = n % P;
    for (; k != 0; k /= 2) {
        if (k & 1) r = r * t % P;
        t = t * t % P;
    }
    return r;
}
ll inv(ll n) {
    return powmod(n, P - 2);
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);

    int n, m;
    cin >> n >> m;

    ll k;
    cin >> k;
    
    int p, q;
    cin >> p >> q;

    ll h = inv(2);
    ll x = (P + 1 - p * inv(q) % P * 2 % P) % P;
    x = (h * powmod(x, k) + h) % P;
    ll y = (P + 1 - x) % P;

    ll r = 0;
    for (int i = 0; i < n; i++) {
        ll b;
        cin >> b;

        ll t = i < m ? b * x : b * y;
        r += t % P;
    }

    cout << r % P << endl;

    return 0;
}
0