結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 4 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 5 ms
5,376 KB
testcase_04 AC 5 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 330 ms
5,504 KB
testcase_08 AC 722 ms
6,144 KB
testcase_09 AC 1,760 ms
6,784 KB
testcase_10 AC 1,882 ms
6,912 KB
testcase_11 AC 276 ms
5,504 KB
testcase_12 AC 2,354 ms
7,296 KB
testcase_13 AC 2,305 ms
7,296 KB
testcase_14 AC 2,354 ms
7,296 KB
testcase_15 AC 2,339 ms
7,424 KB
testcase_16 AC 2,353 ms
7,424 KB
testcase_17 AC 46 ms
5,632 KB
testcase_18 AC 2,315 ms
7,424 KB
testcase_19 TLE -
testcase_20 AC 34 ms
5,760 KB
testcase_21 AC 201 ms
5,632 KB
testcase_22 AC 213 ms
5,632 KB
testcase_23 AC 227 ms
5,760 KB
testcase_24 AC 271 ms
5,632 KB
testcase_25 AC 257 ms
5,632 KB
testcase_26 AC 269 ms
5,760 KB
testcase_27 AC 290 ms
6,528 KB
testcase_28 AC 305 ms
6,400 KB
testcase_29 AC 312 ms
6,400 KB
testcase_30 AC 330 ms
6,272 KB
testcase_31 AC 345 ms
6,272 KB
testcase_32 AC 339 ms
6,272 KB
testcase_33 AC 354 ms
6,272 KB
testcase_34 AC 367 ms
6,272 KB
testcase_35 AC 369 ms
6,272 KB
testcase_36 AC 377 ms
6,144 KB
testcase_37 AC 3 ms
5,376 KB
testcase_38 AC 32 ms
5,632 KB
testcase_39 AC 1,175 ms
7,296 KB
testcase_40 AC 1,217 ms
7,424 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