結果

問題 No.1233 割り切れない気持ち
ユーザー tokusakuraitokusakurai
提出日時 2020-09-18 22:03:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 70 ms / 3,153 ms
コード長 1,327 bytes
コンパイル時間 2,750 ms
コンパイル使用メモリ 198,948 KB
実行使用メモリ 7,420 KB
最終ジャッジ日時 2023-09-04 21:47:53
合計ジャッジ時間 5,508 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,524 KB
testcase_01 AC 9 ms
6,524 KB
testcase_02 AC 10 ms
6,592 KB
testcase_03 AC 9 ms
6,500 KB
testcase_04 AC 9 ms
6,492 KB
testcase_05 AC 9 ms
6,492 KB
testcase_06 AC 9 ms
6,492 KB
testcase_07 AC 22 ms
6,744 KB
testcase_08 AC 32 ms
6,836 KB
testcase_09 AC 55 ms
7,136 KB
testcase_10 AC 59 ms
7,192 KB
testcase_11 AC 21 ms
6,908 KB
testcase_12 AC 70 ms
7,256 KB
testcase_13 AC 70 ms
7,300 KB
testcase_14 AC 66 ms
7,324 KB
testcase_15 AC 68 ms
7,412 KB
testcase_16 AC 68 ms
7,324 KB
testcase_17 AC 35 ms
7,284 KB
testcase_18 AC 62 ms
7,376 KB
testcase_19 AC 66 ms
7,388 KB
testcase_20 AC 36 ms
7,300 KB
testcase_21 AC 47 ms
7,268 KB
testcase_22 AC 47 ms
7,312 KB
testcase_23 AC 47 ms
7,316 KB
testcase_24 AC 46 ms
7,304 KB
testcase_25 AC 48 ms
7,320 KB
testcase_26 AC 47 ms
7,268 KB
testcase_27 AC 56 ms
7,256 KB
testcase_28 AC 55 ms
7,420 KB
testcase_29 AC 55 ms
7,272 KB
testcase_30 AC 55 ms
7,260 KB
testcase_31 AC 55 ms
7,264 KB
testcase_32 AC 55 ms
7,272 KB
testcase_33 AC 56 ms
7,368 KB
testcase_34 AC 54 ms
7,408 KB
testcase_35 AC 55 ms
7,372 KB
testcase_36 AC 55 ms
7,316 KB
testcase_37 AC 9 ms
6,536 KB
testcase_38 AC 37 ms
7,260 KB
testcase_39 AC 49 ms
7,260 KB
testcase_40 AC 50 ms
7,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for(int i = 0; i < n; i++)
#define rep2(i, x, n) for(int i = x; i <= n; i++)
#define rep3(i, x, n) for(int i = x; i >= n; i--)
#define elif else if
#define sp(x) fixed << setprecision(x)
#define pb push_back
#define eb emplace_back
#define all(x) x.begin(), x.end()
#define sz(x) (int)x.size()
using ll = long long;
using pii = pair<int, int>;
using pil = pair<int, ll>;
using pli = pair<ll, int>;
using pll = pair<ll, ll>;
const int MOD = 1000000007;
//const int MOD = 998244353;
const int inf = (1<<30)-1;
const ll INF = (1LL<<60)-1;
const double pi = acos(-1.0);
const double EPS = 1e-10;
template<typename T> bool chmax(T &x, const T &y) {return (x < y)? (x = y, true) : false;};
template<typename T> bool chmin(T &x, const T &y) {return (x > y)? (x = y, true) : false;};

int main(){
    int N;
    cin >> N;
    int A[N];
    ll cnt[200001];
    memset(cnt, 0, sizeof cnt);
    ll S = 0;
    rep(i, N) {cin >> A[i]; cnt[A[i]]++; S += A[i];}
    ll sum[200002];
    sum[0] = 0;
    rep(i, 200001) sum[i+1] = sum[i]+cnt[i];
    ll ans = 0;
    rep2(i, 1, 200000){
        ll tmp = S;
        for(ll j = 0; i*j <= 200000; j++){
            tmp -= (sum[min(200001LL, i*(j+1))]-sum[i*j])*j*i;
        }
        ans += tmp*cnt[i];
    }
    cout << ans << endl;
}
0