結果

問題 No.1233 割り切れない気持ち
ユーザー vjudge1vjudge1
提出日時 2024-05-02 12:16:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 536 bytes
コンパイル時間 2,240 ms
コンパイル使用メモリ 199,540 KB
実行使用メモリ 13,888 KB
最終ジャッジ日時 2024-05-02 12:17:32
合計ジャッジ時間 29,975 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 0 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 343 ms
5,376 KB
testcase_08 AC 716 ms
5,376 KB
testcase_09 AC 1,809 ms
5,376 KB
testcase_10 AC 1,924 ms
5,504 KB
testcase_11 AC 274 ms
5,376 KB
testcase_12 AC 2,364 ms
5,632 KB
testcase_13 AC 2,398 ms
5,760 KB
testcase_14 AC 2,462 ms
5,888 KB
testcase_15 AC 2,395 ms
5,888 KB
testcase_16 AC 2,376 ms
5,760 KB
testcase_17 AC 40 ms
5,376 KB
testcase_18 AC 2,343 ms
5,760 KB
testcase_19 TLE -
testcase_20 AC 31 ms
5,376 KB
testcase_21 AC 207 ms
5,376 KB
testcase_22 AC 218 ms
5,376 KB
testcase_23 AC 227 ms
5,376 KB
testcase_24 AC 242 ms
5,376 KB
testcase_25 AC 274 ms
5,376 KB
testcase_26 AC 266 ms
5,376 KB
testcase_27 AC 292 ms
5,760 KB
testcase_28 AC 299 ms
5,888 KB
testcase_29 AC 311 ms
5,760 KB
testcase_30 AC 318 ms
5,760 KB
testcase_31 AC 331 ms
5,888 KB
testcase_32 AC 345 ms
5,888 KB
testcase_33 AC 356 ms
5,888 KB
testcase_34 AC 364 ms
5,760 KB
testcase_35 AC 395 ms
5,760 KB
testcase_36 AC 392 ms
5,888 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 33 ms
5,760 KB
testcase_39 AC 1,192 ms
5,760 KB
testcase_40 AC 1,187 ms
5,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const int MAXN = 200001;

int n, a[MAXN], Max;
long long ans, sum[MAXN];

int main() {
  cin >> n;
  for(int i = 1; i <= n; ++i) {
    cin >> a[i];
    sum[a[i]] += a[i], ans += 1ll * a[i] * n, Max = max(Max, a[i]);
  }
  for(int i = 1; i <= Max; ++i) {
    sum[i] += sum[i - 1];
  }
  for(int i = 1; i <= n; ++i) {
    for(int l = 1, r; l <= a[i]; l = r + 1) {
      int x = a[i] / l;
      r = a[i] / x;
      ans -= 1ll * x * (sum[r] - sum[l - 1]);
    }
  }
  cout << ans;
  return 0;
}
0