結果

問題 No.2938 Sigma Sigma Distance Distance Problem
ユーザー otoshigootoshigo
提出日時 2024-10-18 21:21:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 589 bytes
コンパイル時間 2,385 ms
コンパイル使用メモリ 201,476 KB
実行使用メモリ 13,644 KB
最終ジャッジ日時 2024-10-18 21:27:49
合計ジャッジ時間 63,571 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,644 KB
testcase_01 AC 2 ms
10,148 KB
testcase_02 AC 2 ms
10,660 KB
testcase_03 AC 2 ms
10,780 KB
testcase_04 AC 2 ms
13,632 KB
testcase_05 AC 2 ms
10,528 KB
testcase_06 AC 2 ms
13,632 KB
testcase_07 AC 2 ms
10,660 KB
testcase_08 AC 2 ms
13,640 KB
testcase_09 AC 2 ms
10,272 KB
testcase_10 AC 2 ms
13,640 KB
testcase_11 AC 2 ms
10,664 KB
testcase_12 AC 2 ms
10,660 KB
testcase_13 AC 2 ms
10,784 KB
testcase_14 AC 2 ms
10,532 KB
testcase_15 AC 2 ms
10,276 KB
testcase_16 AC 2 ms
13,640 KB
testcase_17 AC 2 ms
10,524 KB
testcase_18 AC 2 ms
13,636 KB
testcase_19 AC 2 ms
10,784 KB
testcase_20 AC 2 ms
10,532 KB
testcase_21 AC 2 ms
10,524 KB
04_evil_01.txt TLE -
04_evil_02.txt TLE -
04_evil_03.txt TLE -
04_evil_04.txt TLE -
04_evil_05.txt TLE -
04_evil_06.txt TLE -
04_evil_07.txt TLE -
04_evil_08.txt TLE -
04_evil_09.txt TLE -
04_evil_10.txt TLE -
04_evil_11.txt TLE -
04_evil_12.txt TLE -
04_evil_13.txt TLE -
04_evil_14.txt TLE -
04_evil_15.txt TLE -
04_evil_16.txt TLE -
04_evil_17.txt TLE -
04_evil_18.txt TLE -
04_evil_19.txt TLE -
04_evil_20.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
#define all(v) v.begin(),v.end()
#define rall(v) v.rbegin(),v.rend()
template<class T> bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;}
template<class T> bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int N;
    cin>>N;
    vector<int>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<<"\n";
}
0