結果

問題 No.2046 Ans Mod? Mod Ans!
ユーザー 箱星箱星
提出日時 2021-07-18 22:13:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 524 bytes
コンパイル時間 2,228 ms
コンパイル使用メモリ 203,404 KB
実行使用メモリ 10,792 KB
最終ジャッジ日時 2024-12-16 08:05:16
合計ジャッジ時間 43,825 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
8,576 KB
testcase_01 AC 2 ms
10,496 KB
testcase_02 AC 2 ms
10,272 KB
testcase_03 AC 4 ms
8,576 KB
testcase_04 AC 3 ms
8,960 KB
testcase_05 AC 4 ms
10,528 KB
testcase_06 AC 3 ms
10,624 KB
testcase_07 AC 5 ms
8,832 KB
testcase_08 AC 41 ms
8,832 KB
testcase_09 AC 55 ms
10,624 KB
testcase_10 AC 69 ms
8,832 KB
testcase_11 AC 133 ms
8,704 KB
testcase_12 AC 92 ms
10,624 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int n;
    cin >> n;
    vector<int> a(n, 0);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }
    ll ans = 0;
    for (int i = 0; i < n; i++) {
        for (int j = i + 1; j < n; j++) {
            ans += abs(a[i] % a[j] - a[j] % a[i]);
        }
    }
    cout << ans << endl;
}
0