結果
問題 | No.2111 Sum of Diff |
ユーザー | keisuke6 |
提出日時 | 2022-10-28 22:23:46 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 76 ms / 2,000 ms |
コード長 | 426 bytes |
コンパイル時間 | 2,233 ms |
コンパイル使用メモリ | 203,944 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-06 01:34:24 |
合計ジャッジ時間 | 3,428 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 20 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long signed main(){ int N; cin>>N; vector<int> S(N+1,0); int mod = 998244353; for(int i=1;i<=N;i++){ int x; cin>>x; S[i] = S[i-1]+x; S[i] %= mod; } int ans = mod; int now = 1; for(int i=2;i<=N;i++){ ans += now*((S[N-i+1]-S[N]+S[i-1]+mod*mod)%mod)%mod; now *= 2; now %= mod; } cout<<ans%mod<<endl; }