結果

問題 No.2046 Ans Mod? Mod Ans!
ユーザー karinohitokarinohito
提出日時 2022-08-19 23:21:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 937 bytes
コンパイル時間 2,157 ms
コンパイル使用メモリ 204,312 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-09 17:31:10
合計ジャッジ時間 3,236 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 4 ms
6,944 KB
testcase_03 AC 8 ms
6,940 KB
testcase_04 AC 7 ms
6,944 KB
testcase_05 AC 8 ms
6,940 KB
testcase_06 AC 7 ms
6,940 KB
testcase_07 AC 8 ms
6,944 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 4 ms
6,940 KB
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 4 ms
6,940 KB
testcase_12 AC 4 ms
6,944 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using vll = vector<int>;
#define all(A) A.begin(),A.end()
#define rep(i, n) for (ll i = 0; i < (ll) (n); i++)
int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int M = 2e5 + 1;
    int N;
    cin >> N;
    vector<bool> R(M + 1, 0);
    vll A(N);
    rep(i, N) {
        cin >> A[i];
        R[A[i]] = 1;
    }
    ll an = 0;
    vll SR(M + 2, 0), SN(M + 2, 0);
    for (int m = M; m > 0; m--) {
        SR[m] = SR[m + 1];
        SN[m] = SN[m + 1];
        if (R[m]) {
            an += ll(m) * SN[m + 1];
            for (int j = m; j <= M; j += m) {
                int nj = min(j + m, M + 1);
                int s = SR[j] - SR[nj];
                int n = SN[j] - SN[nj];
                ll p = ll(j) * n;
                an -= (s - p);
            }
            SR[m] += m;
            SN[m] += 1;
        }
    }
    cout << an << endl;


}
0