結果
| 問題 |
No.2938 Sigma Sigma Distance Distance Problem
|
| コンテスト | |
| ユーザー |
Today03
|
| 提出日時 | 2024-10-18 21:21:40 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 402 bytes |
| コンパイル時間 | 3,121 ms |
| コンパイル使用メモリ | 247,308 KB |
| 実行使用メモリ | 13,888 KB |
| 最終ジャッジ日時 | 2024-10-18 21:27:41 |
| 合計ジャッジ時間 | 64,697 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 19 TLE * 20 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int INF = 1e9 + 10;
const ll INFL = 4e18;
int main() {
ll N;
cin >> N;
vector<ll> A(N);
for (int i = 0; i < N; i++) cin >> A[i];
ll ans = 0;
for (int i = 0; i < N; i++) {
for (int j = 0; j < N; j++) {
ans += abs(i - j) * abs(A[i] - A[j]);
}
}
cout << ans << endl;
}
Today03