結果

問題 No.1096 Range Sums
ユーザー iqueue02iqueue02
提出日時 2020-06-26 21:42:46
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 492 bytes
コンパイル時間 1,867 ms
コンパイル使用メモリ 194,208 KB
最終ジャッジ日時 2025-01-11 11:08:06
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i = 0; i < (n);i++)
#define sz(x) int(x.size())
typedef long long ll;
typedef long double ld;
typedef pair<int,int> P;
typedef pair<ll, int> PL;
constexpr ll INF = (1LL << 60);

int main() {
  int n;
  cin >> n;
  vector<ll> a(n);
  rep(i,n) cin >> a[i];

  ll l = 0;

  ll res = 0;
 
  for (int i = 0; i < n; i++) {
    ll r = n - i;
    res += l * r * a[i] + a[i] * r;
    l++;
  }
  cout << res << endl;
  return 0;
} 
0