結果

問題 No.1233 割り切れない気持ち
ユーザー 鴨志田卓鴨志田卓
提出日時 2023-08-01 22:37:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 240 ms / 3,153 ms
コード長 553 bytes
コンパイル時間 2,031 ms
コンパイル使用メモリ 201,612 KB
実行使用メモリ 25,600 KB
最終ジャッジ日時 2024-10-11 18:13:15
合計ジャッジ時間 14,108 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 219 ms
24,704 KB
testcase_01 AC 223 ms
24,832 KB
testcase_02 AC 197 ms
24,704 KB
testcase_03 AC 219 ms
24,808 KB
testcase_04 AC 202 ms
24,832 KB
testcase_05 AC 191 ms
24,812 KB
testcase_06 AC 196 ms
24,704 KB
testcase_07 AC 220 ms
24,960 KB
testcase_08 AC 222 ms
25,088 KB
testcase_09 AC 238 ms
25,324 KB
testcase_10 AC 229 ms
25,544 KB
testcase_11 AC 227 ms
25,044 KB
testcase_12 AC 233 ms
25,600 KB
testcase_13 AC 228 ms
25,472 KB
testcase_14 AC 227 ms
25,472 KB
testcase_15 AC 239 ms
25,472 KB
testcase_16 AC 235 ms
25,600 KB
testcase_17 AC 226 ms
24,736 KB
testcase_18 AC 237 ms
25,472 KB
testcase_19 AC 223 ms
24,680 KB
testcase_20 AC 218 ms
24,704 KB
testcase_21 AC 226 ms
24,704 KB
testcase_22 AC 238 ms
24,832 KB
testcase_23 AC 229 ms
24,832 KB
testcase_24 AC 236 ms
24,704 KB
testcase_25 AC 231 ms
24,704 KB
testcase_26 AC 220 ms
24,704 KB
testcase_27 AC 240 ms
25,472 KB
testcase_28 AC 227 ms
25,600 KB
testcase_29 AC 218 ms
25,380 KB
testcase_30 AC 227 ms
25,288 KB
testcase_31 AC 207 ms
25,420 KB
testcase_32 AC 207 ms
25,216 KB
testcase_33 AC 205 ms
25,208 KB
testcase_34 AC 209 ms
25,216 KB
testcase_35 AC 196 ms
25,316 KB
testcase_36 AC 211 ms
25,196 KB
testcase_37 AC 184 ms
24,832 KB
testcase_38 AC 180 ms
24,704 KB
testcase_39 AC 205 ms
25,344 KB
testcase_40 AC 210 ms
25,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

const int N = 2e5 + 10;

int n, a[N];

vector<int> sub[N];

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

    cin >> n;
    for(int i = 1, x; i <= n; i ++) {
        cin >> x;
        a[x] ++;
    }

    long long ans = 0, mod = 0;

    for(int i = 1; i < N; i ++) {
        for(int j = i; j < N; j += i)
            sub[j].push_back(i);
        for(auto x : sub[i])
            mod += x * (long long)a[x];
        
        ans += a[i] * ((long long)i * n - mod);
    }
    cout << ans;
}
0