結果

問題 No.1233 割り切れない気持ち
ユーザー tokusakuraitokusakurai
提出日時 2020-09-18 22:03:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 66 ms / 3,153 ms
コード長 1,327 bytes
コンパイル時間 1,893 ms
コンパイル使用メモリ 200,564 KB
実行使用メモリ 7,552 KB
最終ジャッジ日時 2024-06-22 19:15:59
合計ジャッジ時間 4,991 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,812 KB
testcase_01 AC 9 ms
6,812 KB
testcase_02 AC 9 ms
6,940 KB
testcase_03 AC 10 ms
6,940 KB
testcase_04 AC 9 ms
6,940 KB
testcase_05 AC 9 ms
6,940 KB
testcase_06 AC 9 ms
6,940 KB
testcase_07 AC 22 ms
6,940 KB
testcase_08 AC 32 ms
6,988 KB
testcase_09 AC 54 ms
7,216 KB
testcase_10 AC 57 ms
7,296 KB
testcase_11 AC 20 ms
6,940 KB
testcase_12 AC 63 ms
7,552 KB
testcase_13 AC 62 ms
7,340 KB
testcase_14 AC 64 ms
7,372 KB
testcase_15 AC 64 ms
7,424 KB
testcase_16 AC 65 ms
7,288 KB
testcase_17 AC 35 ms
7,552 KB
testcase_18 AC 62 ms
7,316 KB
testcase_19 AC 66 ms
7,376 KB
testcase_20 AC 37 ms
7,296 KB
testcase_21 AC 49 ms
7,356 KB
testcase_22 AC 47 ms
7,408 KB
testcase_23 AC 49 ms
7,408 KB
testcase_24 AC 48 ms
7,540 KB
testcase_25 AC 49 ms
7,456 KB
testcase_26 AC 49 ms
7,424 KB
testcase_27 AC 57 ms
7,424 KB
testcase_28 AC 55 ms
7,364 KB
testcase_29 AC 55 ms
7,444 KB
testcase_30 AC 55 ms
7,416 KB
testcase_31 AC 56 ms
7,340 KB
testcase_32 AC 58 ms
7,316 KB
testcase_33 AC 57 ms
7,424 KB
testcase_34 AC 57 ms
7,424 KB
testcase_35 AC 55 ms
7,412 KB
testcase_36 AC 56 ms
7,316 KB
testcase_37 AC 10 ms
6,940 KB
testcase_38 AC 35 ms
7,216 KB
testcase_39 AC 49 ms
7,372 KB
testcase_40 AC 49 ms
7,376 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