結果

問題 No.1233 割り切れない気持ち
ユーザー vjudge1vjudge1
提出日時 2024-05-02 10:30:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 598 bytes
コンパイル時間 2,051 ms
コンパイル使用メモリ 199,280 KB
実行使用メモリ 7,496 KB
最終ジャッジ日時 2024-11-22 23:32:33
合計ジャッジ時間 38,166 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,248 KB
testcase_01 AC 4 ms
5,248 KB
testcase_02 AC 4 ms
5,248 KB
testcase_03 AC 6 ms
5,248 KB
testcase_04 AC 6 ms
5,248 KB
testcase_05 AC 5 ms
5,248 KB
testcase_06 AC 5 ms
5,248 KB
testcase_07 AC 358 ms
5,632 KB
testcase_08 AC 784 ms
6,016 KB
testcase_09 AC 1,952 ms
6,784 KB
testcase_10 AC 2,177 ms
7,040 KB
testcase_11 AC 303 ms
5,632 KB
testcase_12 AC 2,624 ms
7,376 KB
testcase_13 AC 2,656 ms
7,372 KB
testcase_14 AC 2,615 ms
7,296 KB
testcase_15 AC 2,610 ms
7,376 KB
testcase_16 AC 2,615 ms
7,424 KB
testcase_17 AC 52 ms
5,760 KB
testcase_18 AC 2,596 ms
7,496 KB
testcase_19 TLE -
testcase_20 AC 38 ms
5,760 KB
testcase_21 AC 224 ms
5,760 KB
testcase_22 AC 241 ms
5,760 KB
testcase_23 AC 258 ms
5,760 KB
testcase_24 AC 274 ms
6,016 KB
testcase_25 AC 289 ms
5,888 KB
testcase_26 AC 303 ms
5,888 KB
testcase_27 AC 327 ms
6,528 KB
testcase_28 AC 342 ms
6,528 KB
testcase_29 AC 351 ms
6,400 KB
testcase_30 AC 362 ms
6,400 KB
testcase_31 AC 376 ms
6,272 KB
testcase_32 AC 387 ms
6,400 KB
testcase_33 AC 401 ms
6,144 KB
testcase_34 AC 408 ms
6,272 KB
testcase_35 AC 418 ms
6,272 KB
testcase_36 AC 427 ms
6,272 KB
testcase_37 AC 3 ms
5,248 KB
testcase_38 AC 38 ms
5,888 KB
testcase_39 AC 1,346 ms
7,424 KB
testcase_40 AC 1,329 ms
7,324 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(){
  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