結果

問題 No.1233 割り切れない気持ち
ユーザー vjudge1vjudge1
提出日時 2024-05-02 10:37:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,584 ms / 3,153 ms
コード長 661 bytes
コンパイル時間 2,209 ms
コンパイル使用メモリ 201,252 KB
実行使用メモリ 8,176 KB
最終ジャッジ日時 2024-11-22 23:45:45
合計ジャッジ時間 110,290 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,508 ms
6,820 KB
testcase_01 AC 2,506 ms
6,816 KB
testcase_02 AC 2,502 ms
6,820 KB
testcase_03 AC 2,491 ms
6,820 KB
testcase_04 AC 2,553 ms
6,816 KB
testcase_05 AC 2,508 ms
6,816 KB
testcase_06 AC 2,509 ms
6,820 KB
testcase_07 AC 2,531 ms
6,820 KB
testcase_08 AC 2,512 ms
6,820 KB
testcase_09 AC 2,544 ms
7,908 KB
testcase_10 AC 2,542 ms
8,036 KB
testcase_11 AC 2,517 ms
6,816 KB
testcase_12 AC 2,535 ms
8,164 KB
testcase_13 AC 2,570 ms
8,172 KB
testcase_14 AC 2,555 ms
7,956 KB
testcase_15 AC 2,547 ms
8,040 KB
testcase_16 AC 2,560 ms
8,176 KB
testcase_17 AC 2,547 ms
6,820 KB
testcase_18 AC 2,547 ms
8,016 KB
testcase_19 AC 2,526 ms
6,816 KB
testcase_20 AC 2,512 ms
6,820 KB
testcase_21 AC 2,524 ms
6,820 KB
testcase_22 AC 2,526 ms
6,816 KB
testcase_23 AC 2,527 ms
6,820 KB
testcase_24 AC 2,542 ms
6,820 KB
testcase_25 AC 2,533 ms
6,820 KB
testcase_26 AC 2,505 ms
6,820 KB
testcase_27 AC 2,518 ms
7,268 KB
testcase_28 AC 2,518 ms
7,884 KB
testcase_29 AC 2,514 ms
7,520 KB
testcase_30 AC 2,512 ms
7,020 KB
testcase_31 AC 2,539 ms
7,020 KB
testcase_32 AC 2,527 ms
7,140 KB
testcase_33 AC 2,535 ms
7,672 KB
testcase_34 AC 2,540 ms
7,008 KB
testcase_35 AC 2,522 ms
6,896 KB
testcase_36 AC 2,533 ms
6,896 KB
testcase_37 AC 2,584 ms
6,820 KB
testcase_38 AC 2,524 ms
6,816 KB
testcase_39 AC 2,529 ms
8,168 KB
testcase_40 AC 2,539 ms
8,040 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 = 1; 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