結果

問題 No.1233 割り切れない気持ち
ユーザー milanis48663220milanis48663220
提出日時 2020-09-18 22:07:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 402 ms / 3,153 ms
コード長 906 bytes
コンパイル時間 891 ms
コンパイル使用メモリ 85,796 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-22 19:16:22
合計ジャッジ時間 9,363 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
6,812 KB
testcase_01 AC 25 ms
6,944 KB
testcase_02 AC 39 ms
6,944 KB
testcase_03 AC 59 ms
6,940 KB
testcase_04 AC 56 ms
6,940 KB
testcase_05 AC 39 ms
6,940 KB
testcase_06 AC 39 ms
6,940 KB
testcase_07 AC 154 ms
6,940 KB
testcase_08 AC 213 ms
6,940 KB
testcase_09 AC 350 ms
6,944 KB
testcase_10 AC 343 ms
6,940 KB
testcase_11 AC 148 ms
6,940 KB
testcase_12 AC 400 ms
6,948 KB
testcase_13 AC 401 ms
6,940 KB
testcase_14 AC 396 ms
6,944 KB
testcase_15 AC 402 ms
6,940 KB
testcase_16 AC 390 ms
6,940 KB
testcase_17 AC 124 ms
6,940 KB
testcase_18 AC 380 ms
6,940 KB
testcase_19 AC 122 ms
6,944 KB
testcase_20 AC 126 ms
6,944 KB
testcase_21 AC 131 ms
6,944 KB
testcase_22 AC 134 ms
6,944 KB
testcase_23 AC 137 ms
6,944 KB
testcase_24 AC 137 ms
6,940 KB
testcase_25 AC 130 ms
6,944 KB
testcase_26 AC 133 ms
6,940 KB
testcase_27 AC 153 ms
6,940 KB
testcase_28 AC 144 ms
6,940 KB
testcase_29 AC 146 ms
6,940 KB
testcase_30 AC 146 ms
6,940 KB
testcase_31 AC 144 ms
6,940 KB
testcase_32 AC 138 ms
6,944 KB
testcase_33 AC 144 ms
6,940 KB
testcase_34 AC 146 ms
6,940 KB
testcase_35 AC 143 ms
6,944 KB
testcase_36 AC 142 ms
6,940 KB
testcase_37 AC 15 ms
6,940 KB
testcase_38 AC 134 ms
6,940 KB
testcase_39 AC 342 ms
6,944 KB
testcase_40 AC 354 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#include <map>

using namespace std;
typedef long long ll;
int N;
ll a[200000];
ll sum[200005];


int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    cin >> N;
    ll sum_all = 0;
    for(int i = 0; i < N; i++) {
        cin >> a[i];
        sum_all += a[i];
    }
    sort(a, a+N);
    ll ans = sum_all*N;
    for(int i = 1; i <= 200000; i++){
        for(int j = 0; i*j <= 200000; j++){
            // i*j <= x < i*(j+1)をもとめたい
            auto pl = lower_bound(a, a+N, i*j);
            auto pr = lower_bound(a, a+N, i*(j+1));
            ll cnt = pr-pl;
            sum[i] += cnt*j*i;
        }
    }
    for(int i = 0; i < N; i++){
        ans -= sum[a[i]];
        // cout << sum[a[i]] << endl;
    }
    cout << ans << endl;
}
0