結果

問題 No.1233 割り切れない気持ち
ユーザー outlineoutline
提出日時 2021-01-01 21:11:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 33 ms / 3,153 ms
コード長 1,688 bytes
コンパイル時間 1,375 ms
コンパイル使用メモリ 136,016 KB
実行使用メモリ 5,760 KB
最終ジャッジ日時 2024-10-11 12:15:12
合計ジャッジ時間 4,785 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 5 ms
5,248 KB
testcase_03 AC 7 ms
5,248 KB
testcase_04 AC 6 ms
5,248 KB
testcase_05 AC 6 ms
5,248 KB
testcase_06 AC 6 ms
5,248 KB
testcase_07 AC 14 ms
5,248 KB
testcase_08 AC 18 ms
5,248 KB
testcase_09 AC 26 ms
5,248 KB
testcase_10 AC 27 ms
5,376 KB
testcase_11 AC 13 ms
5,248 KB
testcase_12 AC 31 ms
5,504 KB
testcase_13 AC 30 ms
5,504 KB
testcase_14 AC 32 ms
5,504 KB
testcase_15 AC 31 ms
5,504 KB
testcase_16 AC 33 ms
5,760 KB
testcase_17 AC 15 ms
5,248 KB
testcase_18 AC 32 ms
5,632 KB
testcase_19 AC 23 ms
5,248 KB
testcase_20 AC 15 ms
5,248 KB
testcase_21 AC 18 ms
5,248 KB
testcase_22 AC 18 ms
5,248 KB
testcase_23 AC 18 ms
5,248 KB
testcase_24 AC 17 ms
5,248 KB
testcase_25 AC 18 ms
5,248 KB
testcase_26 AC 19 ms
5,248 KB
testcase_27 AC 20 ms
5,376 KB
testcase_28 AC 20 ms
5,504 KB
testcase_29 AC 19 ms
5,376 KB
testcase_30 AC 20 ms
5,376 KB
testcase_31 AC 20 ms
5,376 KB
testcase_32 AC 20 ms
5,504 KB
testcase_33 AC 20 ms
5,248 KB
testcase_34 AC 19 ms
5,248 KB
testcase_35 AC 20 ms
5,376 KB
testcase_36 AC 20 ms
5,248 KB
testcase_37 AC 3 ms
5,248 KB
testcase_38 AC 16 ms
5,248 KB
testcase_39 AC 24 ms
5,760 KB
testcase_40 AC 24 ms
5,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>
#include <queue>
#include <string>
#include <map>
#include <set>
#include <stack>
#include <tuple>
#include <deque>
#include <array>
#include <numeric>
#include <bitset>
#include <iomanip>
#include <cassert>
#include <chrono>
#include <random>
#include <limits>
#include <iterator>
#include <functional>
#include <sstream>
#include <fstream>
#include <complex>
#include <cstring>
#include <unordered_map>
#include <unordered_set>
using namespace std;

using ll = long long;
using P = pair<int, int>;
constexpr int INF = 1001001001;
constexpr int mod = 1000000007;
// constexpr int mod = 998244353;

template<class T>
inline bool chmax(T& x, T y){
    if(x < y){
        x = y;
        return true;
    }
    return false;
}
template<class T>
inline bool chmin(T& x, T y){
    if(x > y){
        x = y;
        return true;
    }
    return false;
}

constexpr int MAX = 200000;
int dist[MAX + 5];
int distsum[MAX + 5];

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

    int N;
    cin >> N;
    vector<int> A(N);
    ll S = 0;
    for(int i = 0; i < N; ++i){
        cin >> A[i];
        dist[A[i]] += 1;
        S += A[i];
    }
    for(int i = 0; i <= MAX; ++i){
        distsum[i + 1] = distsum[i] + dist[i];
    }

    ll sum = 0;
    for(int i = 1; i <= MAX; ++i){
        if(dist[i] == 0)    continue;
        ll floorsum = 0;
        for(int l = i; l <= MAX; l += i){
            int r = min(MAX + 1, l + i);
            floorsum += (ll)(distsum[r] - distsum[l]) * (l / i);
        }
        sum += floorsum * i * dist[i];
    }
    
    cout << S * N - sum << endl;

    return 0;
}
0