結果

問題 No.1233 割り切れない気持ち
ユーザー vjudge1vjudge1
提出日時 2024-05-02 10:32:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 637 bytes
コンパイル時間 1,983 ms
コンパイル使用メモリ 200,408 KB
実行使用メモリ 7,400 KB
最終ジャッジ日時 2024-11-22 23:34:21
合計ジャッジ時間 36,382 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,816 KB
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 4 ms
6,816 KB
testcase_03 AC 4 ms
6,820 KB
testcase_04 AC 4 ms
6,816 KB
testcase_05 AC 4 ms
6,820 KB
testcase_06 AC 3 ms
6,820 KB
testcase_07 AC 345 ms
6,820 KB
testcase_08 AC 759 ms
6,824 KB
testcase_09 AC 1,910 ms
7,140 KB
testcase_10 AC 2,099 ms
7,016 KB
testcase_11 AC 295 ms
6,816 KB
testcase_12 AC 2,604 ms
7,296 KB
testcase_13 AC 2,605 ms
7,296 KB
testcase_14 AC 2,568 ms
7,272 KB
testcase_15 AC 2,585 ms
7,400 KB
testcase_16 AC 2,553 ms
7,268 KB
testcase_17 AC 34 ms
6,820 KB
testcase_18 AC 2,554 ms
7,380 KB
testcase_19 TLE -
testcase_20 AC 19 ms
6,820 KB
testcase_21 AC 194 ms
6,816 KB
testcase_22 AC 212 ms
6,820 KB
testcase_23 AC 230 ms
6,820 KB
testcase_24 AC 247 ms
6,816 KB
testcase_25 AC 259 ms
6,820 KB
testcase_26 AC 275 ms
6,820 KB
testcase_27 AC 290 ms
6,884 KB
testcase_28 AC 304 ms
6,820 KB
testcase_29 AC 326 ms
7,000 KB
testcase_30 AC 326 ms
6,980 KB
testcase_31 AC 337 ms
6,816 KB
testcase_32 AC 353 ms
6,844 KB
testcase_33 AC 363 ms
6,820 KB
testcase_34 AC 372 ms
6,816 KB
testcase_35 AC 382 ms
6,820 KB
testcase_36 AC 393 ms
6,820 KB
testcase_37 AC 3 ms
6,820 KB
testcase_38 AC 18 ms
6,820 KB
testcase_39 AC 1,294 ms
7,396 KB
testcase_40 AC 1,285 ms
7,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

using LL = long long;

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

int n, a[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];
  }
  for(int i = 0; i <= MAXN; ++i){
    sum[i] = sum[i - 1] + cnt[i];
  }
  for(int i = 1; i <= n; ++i){
    now = 0;
    for(int l = 1, r; l <= a[i]; l = r + 1){
      r = a[i] / (a[i] / l);
      now += 1ll * a[i] / l * (sum[r] - sum[l - 1]);
    }
    ans += 1ll * n * a[i] - now;
  }
  cout << ans;
  return 0;
}
/*
a[i] - (a[i] / a[j]) * a[j];
*/
0