結果
問題 | No.995 タピオカオイシクナーレ |
ユーザー | ok |
提出日時 | 2020-02-21 22:13:29 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,207 bytes |
コンパイル時間 | 933 ms |
コンパイル使用メモリ | 83,836 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-08 22:46:26 |
合計ジャッジ時間 | 2,213 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 1 ms
5,248 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 15 ms
5,248 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 14 ms
5,248 KB |
testcase_21 | AC | 14 ms
5,248 KB |
testcase_22 | WA | - |
testcase_23 | AC | 14 ms
5,248 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
ソースコード
#include<iostream> #include<string> #include<iomanip> #include<cmath> #include<vector> #include<algorithm> using namespace std; // #define int long long #define int __int128 #define endl "\n" constexpr long long INF = (long long)1e18; constexpr long long MOD = 1'000'000'007; string yn(bool f){return f?"Yes":"No";} string YN(bool f){return f?"YES":"NO";} long long power(long long x, long long n){ long long ans = 1; for(;n;n>>=1,x*=x,ans%=MOD,x%=MOD) if(n&1)ans*=x; return ans%MOD; } signed main(){ cin.tie(nullptr); ios::sync_with_stdio(false); cout<<fixed<<setprecision(10); long long N, M, K, p, q; int P, P2; int E, O; int ans = 0; vector<long long> b; cin>>N>>M>>K>>p>>q; b.resize(N); P = (int)p * power(q, MOD-2) % MOD; P2 = (int)(q - p + MOD) % MOD * power(q, MOD-2) % MOD; E = ((int)1 + power((P + MOD - P2)%MOD, K))%MOD; E *= (int)power(2, MOD-2); E %= MOD; O = ((int)1 + MOD - power((P + MOD - P2)%MOD, K))%MOD; O *= (int)power(2, MOD-2); O %= MOD; for(int i = 0; i < N; i++) { cin>>b[i]; if(i < M) { ans += (int)b[i] * E%MOD; } else { ans += (int)b[i] * O%MOD; } ans %= MOD; } cout<<(long long)ans<<endl; return 0; }