結果

問題 No.1233 割り切れない気持ち
ユーザー vjudge1vjudge1
提出日時 2024-05-02 10:35:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,569 ms / 3,153 ms
コード長 661 bytes
コンパイル時間 2,100 ms
コンパイル使用メモリ 199,024 KB
実行使用メモリ 8,320 KB
最終ジャッジ日時 2024-05-02 10:37:35
合計ジャッジ時間 102,254 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,296 ms
5,248 KB
testcase_01 AC 2,303 ms
5,248 KB
testcase_02 AC 2,311 ms
5,376 KB
testcase_03 AC 2,547 ms
5,376 KB
testcase_04 AC 2,292 ms
5,376 KB
testcase_05 AC 2,316 ms
5,376 KB
testcase_06 AC 2,308 ms
5,376 KB
testcase_07 AC 2,324 ms
5,760 KB
testcase_08 AC 2,303 ms
6,272 KB
testcase_09 AC 2,313 ms
7,424 KB
testcase_10 AC 2,333 ms
7,680 KB
testcase_11 AC 2,322 ms
5,760 KB
testcase_12 AC 2,382 ms
8,192 KB
testcase_13 AC 2,345 ms
7,936 KB
testcase_14 AC 2,462 ms
8,064 KB
testcase_15 AC 2,347 ms
8,064 KB
testcase_16 AC 2,569 ms
8,064 KB
testcase_17 AC 2,354 ms
5,888 KB
testcase_18 AC 2,340 ms
8,192 KB
testcase_19 AC 2,355 ms
5,760 KB
testcase_20 AC 2,348 ms
5,632 KB
testcase_21 AC 2,327 ms
5,760 KB
testcase_22 AC 2,324 ms
5,632 KB
testcase_23 AC 2,359 ms
5,760 KB
testcase_24 AC 2,323 ms
5,760 KB
testcase_25 AC 2,330 ms
5,632 KB
testcase_26 AC 2,437 ms
5,760 KB
testcase_27 AC 2,317 ms
7,168 KB
testcase_28 AC 2,298 ms
7,168 KB
testcase_29 AC 2,344 ms
7,040 KB
testcase_30 AC 2,351 ms
6,912 KB
testcase_31 AC 2,329 ms
6,912 KB
testcase_32 AC 2,328 ms
6,784 KB
testcase_33 AC 2,377 ms
6,528 KB
testcase_34 AC 2,344 ms
6,656 KB
testcase_35 AC 2,368 ms
6,656 KB
testcase_36 AC 2,316 ms
6,528 KB
testcase_37 AC 2,345 ms
5,376 KB
testcase_38 AC 2,331 ms
5,760 KB
testcase_39 AC 2,445 ms
8,064 KB
testcase_40 AC 2,284 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

using LL = long long;

const int N = 2e5 + 5, MAXN = 2e5;

int n, a[N], vis[N];
LL sum[N], cnt[N], ans, now;

int main(){
  ios::sync_with_stdio(0), cin.tie(0);
  cin >> n;
  for(int i = 1; i <= n; ++i){
    cin >> a[i];
    cnt[a[i]] += a[i];
    vis[a[i]]++;
  }
  for(int i = 0; i <= MAXN; ++i){
    sum[i] = sum[i - 1] + cnt[i];
  }
  for(int i = 0; i <= MAXN; ++i){
    now = 0;
    for(int l = 1, r; l <= i; l = r + 1){
      r = i / (i / l);
      now += 1ll * i / l * (sum[r] - sum[l - 1]);
    }
    ans += (1ll * n * i - now) * vis[i];
  }
  cout << ans;
  return 0;
}
/*
a[i] - (a[i] / a[j]) * a[j];
*/
0