結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,483 ms
6,816 KB
testcase_01 AC 2,478 ms
6,816 KB
testcase_02 AC 2,539 ms
6,816 KB
testcase_03 AC 2,480 ms
6,820 KB
testcase_04 AC 2,464 ms
6,816 KB
testcase_05 AC 2,523 ms
6,816 KB
testcase_06 AC 2,521 ms
6,816 KB
testcase_07 AC 2,477 ms
7,824 KB
testcase_08 AC 2,471 ms
6,820 KB
testcase_09 AC 2,421 ms
7,660 KB
testcase_10 AC 2,496 ms
8,036 KB
testcase_11 AC 2,461 ms
6,816 KB
testcase_12 AC 2,504 ms
8,172 KB
testcase_13 AC 2,489 ms
8,032 KB
testcase_14 AC 2,467 ms
8,036 KB
testcase_15 AC 2,510 ms
8,164 KB
testcase_16 AC 2,524 ms
8,180 KB
testcase_17 AC 2,501 ms
6,816 KB
testcase_18 AC 2,506 ms
8,024 KB
testcase_19 AC 2,523 ms
7,780 KB
testcase_20 AC 2,525 ms
6,816 KB
testcase_21 AC 2,527 ms
6,816 KB
testcase_22 AC 2,542 ms
6,820 KB
testcase_23 AC 2,544 ms
6,820 KB
testcase_24 AC 2,526 ms
6,820 KB
testcase_25 AC 2,508 ms
6,816 KB
testcase_26 AC 2,518 ms
6,816 KB
testcase_27 AC 2,504 ms
7,404 KB
testcase_28 AC 2,499 ms
7,708 KB
testcase_29 AC 2,508 ms
7,368 KB
testcase_30 AC 2,524 ms
7,152 KB
testcase_31 AC 2,484 ms
7,136 KB
testcase_32 AC 2,499 ms
7,024 KB
testcase_33 AC 2,525 ms
7,272 KB
testcase_34 AC 2,467 ms
7,024 KB
testcase_35 AC 2,479 ms
7,016 KB
testcase_36 AC 2,499 ms
7,792 KB
testcase_37 AC 2,475 ms
6,820 KB
testcase_38 AC 2,563 ms
6,820 KB
testcase_39 AC 2,491 ms
8,164 KB
testcase_40 AC 2,499 ms
8,036 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