結果
問題 | No.2111 Sum of Diff |
ユーザー | umezo |
提出日時 | 2022-10-28 22:33:59 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 27 ms / 2,000 ms |
コード長 | 503 bytes |
コンパイル時間 | 1,963 ms |
コンパイル使用メモリ | 201,996 KB |
実行使用メモリ | 6,528 KB |
最終ジャッジ日時 | 2024-07-06 01:45:56 |
合計ジャッジ時間 | 3,252 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 20 |
ソースコード
#define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; #include<bits/stdc++.h> using namespace std; const int MOD=998244353; int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); int n; cin>>n; vector<ll> A(n); rep(i,n) cin>>A[i]; ll ans=0; vector<ll> B(200200); B[0]=1LL; for(int i=1;i<200200;i++) B[i]=B[i-1]*2%MOD; rep(i,n){ ans=(ans+A[i]*(B[n-1-i]-B[i]+MOD)%MOD)%MOD; } cout<<ans<<endl; return 0; }