結果

問題 No.1233 割り切れない気持ち
ユーザー kusaf_kusaf_
提出日時 2024-09-01 10:18:52
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 659 bytes
コンパイル時間 3,132 ms
コンパイル使用メモリ 252,264 KB
実行使用メモリ 13,212 KB
最終ジャッジ日時 2024-09-01 10:19:11
合計ジャッジ時間 18,893 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 3 ms
6,944 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 5 ms
6,944 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 593 ms
6,940 KB
testcase_08 AC 1,336 ms
6,940 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 500 ms
6,944 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

vector<tuple<ll, ll, ll>> Enum_floor(ll n) {
  vector<tuple<ll, ll, ll>> ret;
  ll l = 1;
  while(l <= n) {
    ll q = n / l, r = n / q + 1;
    ret.push_back({l, r, q});
    l = r;
  }
  return ret;
}

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

  ll N;
  cin >> N;

  vector<ll> A(N), c(200001, 0);
  ll ans = 0;
  for(auto &i : A) {
    cin >> i;
    ans += i * N;
    c[i] += i;
  }

  for(ll i = 0; i < 200000; i++) { c[i + 1] += c[i]; }

  for(auto &i : A) {
    for(auto &[l, r, q] : Enum_floor(i)) { ans -= (c[--r] - c[--l]) * q; }
  }

  cout << ans << "\n";
}
0