結果

問題 No.1233 割り切れない気持ち
ユーザー finefine
提出日時 2020-09-18 22:07:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,001 bytes
コンパイル時間 1,499 ms
コンパイル使用メモリ 168,568 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-22 16:53:51
合計ジャッジ時間 3,710 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,812 KB
testcase_01 AC 4 ms
6,944 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 15 ms
6,940 KB
testcase_18 WA -
testcase_19 AC 22 ms
6,940 KB
testcase_20 AC 15 ms
6,940 KB
testcase_21 AC 17 ms
6,944 KB
testcase_22 AC 16 ms
6,940 KB
testcase_23 AC 17 ms
6,940 KB
testcase_24 AC 17 ms
6,940 KB
testcase_25 AC 17 ms
6,940 KB
testcase_26 AC 17 ms
6,944 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 4 ms
6,944 KB
testcase_38 AC 15 ms
6,940 KB
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;

constexpr char newl = '\n';

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int n;
    cin >> n;

    vector<ll> cnt(200010, 0);
    for (int i = 0; i < n; i++) {
        int a;
        cin >> a;
        ++cnt[a];
    }

    // 0 1 2 3 0 1 2 3
    // 0 1 1 1 -3 1 1 1
    // 0 1 0 0 -4 4 0 0
    ll ans = 0, memo = cnt[1];
    vector<ll> dp(200010, 0);
    for (int i = 2; i <= 200000; i++) {
        if (!cnt[i]) continue;
        ans += memo * cnt[i];
        for (int j = i; j <= 200000; j += i) {
            dp[j + 1] += cnt[i];
            if (j + i <= 200000) dp[j + i] -= i * cnt[i];
        }
        memo += cnt[i] * i;
    }

    for (int i = 1; i <= 200000; i++) {
        dp[i] += dp[i - 1];
    }

    for (int i = 1; i <= 200000; i++) {
        dp[i] += dp[i - 1];
    }

    for (int i = 0; i <= 200000; i++) {
        ans += dp[i] * cnt[i];
    }
    cout << ans << newl;
    return 0;
}
0