結果

問題 No.1233 割り切れない気持ち
ユーザー ゆきのんゆきのん
提出日時 2020-09-21 07:34:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 186 ms / 3,153 ms
コード長 1,237 bytes
コンパイル時間 1,951 ms
コンパイル使用メモリ 169,792 KB
実行使用メモリ 45,924 KB
最終ジャッジ日時 2024-06-24 11:24:06
合計ジャッジ時間 6,256 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
44,356 KB
testcase_01 AC 21 ms
44,240 KB
testcase_02 AC 38 ms
44,136 KB
testcase_03 AC 54 ms
44,256 KB
testcase_04 AC 53 ms
44,188 KB
testcase_05 AC 39 ms
44,160 KB
testcase_06 AC 44 ms
44,232 KB
testcase_07 AC 80 ms
44,544 KB
testcase_08 AC 108 ms
44,876 KB
testcase_09 AC 120 ms
45,484 KB
testcase_10 AC 147 ms
45,640 KB
testcase_11 AC 79 ms
44,696 KB
testcase_12 AC 151 ms
45,692 KB
testcase_13 AC 137 ms
45,788 KB
testcase_14 AC 154 ms
45,748 KB
testcase_15 AC 140 ms
45,696 KB
testcase_16 AC 150 ms
45,844 KB
testcase_17 AC 52 ms
45,764 KB
testcase_18 AC 186 ms
45,756 KB
testcase_19 AC 81 ms
45,716 KB
testcase_20 AC 54 ms
45,700 KB
testcase_21 AC 67 ms
45,780 KB
testcase_22 AC 66 ms
45,860 KB
testcase_23 AC 65 ms
45,924 KB
testcase_24 AC 64 ms
45,824 KB
testcase_25 AC 63 ms
45,808 KB
testcase_26 AC 64 ms
45,592 KB
testcase_27 AC 71 ms
45,708 KB
testcase_28 AC 73 ms
45,844 KB
testcase_29 AC 72 ms
45,720 KB
testcase_30 AC 73 ms
45,728 KB
testcase_31 AC 71 ms
45,764 KB
testcase_32 AC 71 ms
45,708 KB
testcase_33 AC 71 ms
45,700 KB
testcase_34 AC 71 ms
45,712 KB
testcase_35 AC 70 ms
45,728 KB
testcase_36 AC 72 ms
45,764 KB
testcase_37 AC 21 ms
44,284 KB
testcase_38 AC 54 ms
45,840 KB
testcase_39 AC 107 ms
45,784 KB
testcase_40 AC 114 ms
45,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define fs first
#define sc second
#define pb push_back
#define mp make_pair
#define eb emplace_back
#define ALL(A) A.begin(),A.end()
#define RALL(A) A.rbegin(),A.rend()
typedef long long ll;
typedef pair<ll,ll> P;
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
template<typename T> T gcd(T a,T b){return b?gcd(b,a%b):a;}
const ll MOD=1000000007;
const ll LINF=1ll<<60;
const int INF=1<<30;
int dx[]={1,0,-1,0,1,-1,1,-1};
int dy[]={0,1,0,-1,1,-1,-1,1};


int main(){
    int n;cin >> n;
    vector<ll> a(n);
    vector<ll> c(1<<20,0),x(1<<20 + 1,0),y(1<<20 + 1, 0);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
        c[a[i]]++;
    }
    for (int i = 0; i < 1<<20; i++) {
        x[i+1] = x[i] + c[i];
        y[i+1] = y[i] + i * c[i];
    }
    ll ans = 0;
    for (int i = 1; i < 1<<20; i++) {
        if(c[i]){
            for (int j = i; j < 1<<20; j+=i) {
                ll t = j / i - 1;
                ans += c[i] * ((y[j] - y[j-i]) - (x[j] - x[j-i]) * i * t);
            }
        }
    }
    cout << ans << endl;
    return 0;
}
0