結果

問題 No.1233 割り切れない気持ち
ユーザー umezoumezo
提出日時 2024-01-30 04:04:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 496 ms / 3,153 ms
コード長 646 bytes
コンパイル時間 2,112 ms
コンパイル使用メモリ 214,452 KB
実行使用メモリ 17,280 KB
最終ジャッジ日時 2024-09-28 10:11:15
合計ジャッジ時間 8,835 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 11 ms
5,376 KB
testcase_03 AC 25 ms
5,376 KB
testcase_04 AC 19 ms
5,376 KB
testcase_05 AC 13 ms
5,376 KB
testcase_06 AC 14 ms
5,376 KB
testcase_07 AC 126 ms
5,760 KB
testcase_08 AC 189 ms
7,296 KB
testcase_09 AC 307 ms
10,880 KB
testcase_10 AC 325 ms
11,392 KB
testcase_11 AC 103 ms
5,376 KB
testcase_12 AC 376 ms
12,672 KB
testcase_13 AC 349 ms
12,544 KB
testcase_14 AC 367 ms
12,544 KB
testcase_15 AC 377 ms
12,544 KB
testcase_16 AC 383 ms
12,544 KB
testcase_17 AC 16 ms
5,376 KB
testcase_18 AC 496 ms
17,280 KB
testcase_19 AC 22 ms
5,376 KB
testcase_20 AC 25 ms
5,376 KB
testcase_21 AC 33 ms
5,376 KB
testcase_22 AC 32 ms
5,376 KB
testcase_23 AC 33 ms
5,376 KB
testcase_24 AC 31 ms
5,376 KB
testcase_25 AC 32 ms
5,376 KB
testcase_26 AC 32 ms
5,376 KB
testcase_27 AC 35 ms
5,376 KB
testcase_28 AC 34 ms
5,376 KB
testcase_29 AC 35 ms
5,376 KB
testcase_30 AC 35 ms
5,376 KB
testcase_31 AC 34 ms
5,376 KB
testcase_32 AC 33 ms
5,376 KB
testcase_33 AC 33 ms
5,376 KB
testcase_34 AC 34 ms
5,376 KB
testcase_35 AC 33 ms
5,376 KB
testcase_36 AC 32 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 24 ms
5,376 KB
testcase_39 AC 263 ms
10,880 KB
testcase_40 AC 250 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int n;
  cin>>n;
  ll sum=0;
  vector<ll> A(n);
  map<ll,ll> m;
  rep(i,n){
    cin>>A[i];
    sum+=A[i];
    m[A[i]]++;
  }
  sum*=n;
  sort(ALL(A));
  
  ll cnt=0;
  for(auto [a,b]:m){
    ll tmp=0;
    for(int i=1;i*a<=200000;i++){
      auto l=lower_bound(ALL(A),i*a)-A.begin();
      auto r=lower_bound(ALL(A),(i+1)*a)-A.begin();
      tmp+=(r-l)*i;
    }
    cnt+=a*b*tmp;
  }
  cout<<sum-cnt<<endl;
    
  return 0;
}
0