結果

問題 No.2046 Ans Mod? Mod Ans!
ユーザー 箱星箱星
提出日時 2021-07-18 22:19:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 562 bytes
コンパイル時間 2,340 ms
コンパイル使用メモリ 201,936 KB
実行使用メモリ 18,632 KB
最終ジャッジ日時 2024-12-16 08:08:13
合計ジャッジ時間 68,042 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
10,496 KB
testcase_01 AC 2 ms
9,344 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 AC 6 ms
9,216 KB
testcase_04 AC 5 ms
9,344 KB
testcase_05 AC 6 ms
9,216 KB
testcase_06 AC 6 ms
9,216 KB
testcase_07 AC 6 ms
10,496 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
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;

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