結果

問題 No.1325 Subsequence Score
ユーザー umezoumezo
提出日時 2020-12-22 00:28:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 574 bytes
コンパイル時間 1,942 ms
コンパイル使用メモリ 203,796 KB
実行使用メモリ 7,220 KB
最終ジャッジ日時 2024-09-21 13:30:54
合計ジャッジ時間 5,234 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 181 ms
7,060 KB
testcase_14 AC 51 ms
6,940 KB
testcase_15 AC 151 ms
6,940 KB
testcase_16 AC 169 ms
6,948 KB
testcase_17 AC 79 ms
6,944 KB
testcase_18 AC 47 ms
6,940 KB
testcase_19 AC 193 ms
7,080 KB
testcase_20 AC 27 ms
6,940 KB
testcase_21 AC 66 ms
6,944 KB
testcase_22 AC 83 ms
6,940 KB
testcase_23 AC 191 ms
7,116 KB
testcase_24 AC 181 ms
7,220 KB
testcase_25 AC 184 ms
7,104 KB
testcase_26 AC 182 ms
7,180 KB
testcase_27 AC 182 ms
7,124 KB
testcase_28 WA -
testcase_29 AC 2 ms
6,940 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;

ll modpow(ll x,ll n){
  ll ans=1;
  while(n){
    if(n&1) ans=ans*x%MOD;
    x=x*x%MOD;
    n/=2;
  }
  return ans;
}

int main(){
  int n;
  cin>>n;
  
  vector<ll> A(n+1);
  rep(i,n) cin>>A[i+1];
  
  if(n==1){
    cout<<A[0]<<endl;
    return 0;
  }
  
  ll ans=0;
  
  for(ll i=1;i<=n;i++){
    ans=(ans+A[i]*(i+1)%MOD)%MOD;
  }
  ans=ans*modpow(2,n-2)%MOD;
  cout<<ans<<endl;
  
  return 0;
}
0