結果

問題 No.1233 割り切れない気持ち
ユーザー Ricky_ponRicky_pon
提出日時 2020-09-18 23:00:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 37 ms / 3,153 ms
コード長 1,613 bytes
コンパイル時間 2,142 ms
コンパイル使用メモリ 200,752 KB
実行使用メモリ 8,392 KB
最終ジャッジ日時 2024-06-22 19:20:58
合計ジャッジ時間 3,959 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,860 KB
testcase_01 AC 4 ms
6,940 KB
testcase_02 AC 6 ms
6,944 KB
testcase_03 AC 8 ms
6,944 KB
testcase_04 AC 6 ms
7,244 KB
testcase_05 AC 6 ms
6,944 KB
testcase_06 AC 7 ms
6,944 KB
testcase_07 AC 14 ms
7,116 KB
testcase_08 AC 19 ms
7,500 KB
testcase_09 AC 30 ms
8,140 KB
testcase_10 AC 34 ms
8,264 KB
testcase_11 AC 15 ms
7,116 KB
testcase_12 AC 37 ms
8,392 KB
testcase_13 AC 36 ms
8,268 KB
testcase_14 AC 36 ms
8,268 KB
testcase_15 AC 36 ms
8,268 KB
testcase_16 AC 34 ms
8,392 KB
testcase_17 AC 19 ms
6,944 KB
testcase_18 AC 36 ms
8,272 KB
testcase_19 AC 23 ms
6,944 KB
testcase_20 AC 21 ms
6,940 KB
testcase_21 AC 23 ms
6,944 KB
testcase_22 AC 20 ms
6,940 KB
testcase_23 AC 22 ms
6,944 KB
testcase_24 AC 22 ms
6,944 KB
testcase_25 AC 22 ms
6,944 KB
testcase_26 AC 21 ms
6,944 KB
testcase_27 AC 22 ms
7,500 KB
testcase_28 AC 22 ms
7,496 KB
testcase_29 AC 23 ms
7,364 KB
testcase_30 AC 23 ms
7,504 KB
testcase_31 AC 22 ms
7,240 KB
testcase_32 AC 21 ms
7,628 KB
testcase_33 AC 22 ms
7,496 KB
testcase_34 AC 21 ms
7,368 KB
testcase_35 AC 24 ms
7,368 KB
testcase_36 AC 21 ms
7,244 KB
testcase_37 AC 3 ms
7,496 KB
testcase_38 AC 19 ms
6,988 KB
testcase_39 AC 28 ms
8,392 KB
testcase_40 AC 27 ms
8,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define For(i, a, b) for (int(i) = (int)(a); (i) < (int)(b); ++(i))
#define rFor(i, a, b) for (int(i) = (int)(a)-1; (i) >= (int)(b); --(i))
#define rep(i, n) For((i), 0, (n))
#define rrep(i, n) rFor((i), (n), 0)
#define fi first
#define se second
using namespace std;
typedef long long lint;
typedef unsigned long long ulint;
typedef pair<int, int> pii;
typedef pair<lint, lint> pll;
template <class T>
bool chmax(T &a, const T &b) {
    if (a < b) {
        a = b;
        return true;
    }
    return false;
}
template <class T>
bool chmin(T &a, const T &b) {
    if (a > b) {
        a = b;
        return true;
    }
    return false;
}
template <class T>
T div_floor(T a, T b) {
    if (b < 0) a *= -1, b *= -1;
    return a >= 0 ? a / b : (a + 1) / b - 1;
}
template <class T>
T div_ceil(T a, T b) {
    if (b < 0) a *= -1, b *= -1;
    return a > 0 ? (a - 1) / b + 1 : a / b;
}

constexpr lint mod = 1000000007;
constexpr lint INF = mod * mod;
constexpr int MAX = 200010;

lint cnt[MAX], cnt_sum[MAX], sum[MAX];

int main() {
    int n;
    scanf("%d", &n);
    rep(i, n) {
        int a;
        scanf("%d", &a);
        ++cnt[a];
        ++cnt_sum[a + 1];
        sum[a + 1] += a;
    }
    partial_sum(cnt_sum, cnt_sum + MAX, cnt_sum);
    partial_sum(sum, sum + MAX, sum);

    lint ans = 0;
    rep(i, MAX) if (cnt[i]) {
        for (int k = 0; k * i <= 200000; ++k) {
            int l = k * i, r = min(MAX - 1, (k + 1) * i);
            ans += ((sum[r] - sum[l]) - (cnt_sum[r] - cnt_sum[l]) * i * k) *
                   cnt[i];
        }
    }
    printf("%lld\n", ans);
}
0