結果

問題 No.1233 割り切れない気持ち
ユーザー msm1993msm1993
提出日時 2020-10-06 11:47:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 79 ms / 3,153 ms
コード長 616 bytes
コンパイル時間 687 ms
コンパイル使用メモリ 64,256 KB
実行使用メモリ 9,088 KB
最終ジャッジ日時 2024-07-20 00:42:54
合計ジャッジ時間 5,497 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
6,656 KB
testcase_01 AC 17 ms
6,656 KB
testcase_02 AC 16 ms
6,656 KB
testcase_03 AC 17 ms
6,656 KB
testcase_04 AC 19 ms
6,656 KB
testcase_05 AC 17 ms
6,528 KB
testcase_06 AC 16 ms
6,656 KB
testcase_07 AC 33 ms
7,040 KB
testcase_08 AC 43 ms
7,680 KB
testcase_09 AC 65 ms
8,576 KB
testcase_10 AC 70 ms
8,704 KB
testcase_11 AC 30 ms
7,168 KB
testcase_12 AC 78 ms
8,832 KB
testcase_13 AC 78 ms
8,832 KB
testcase_14 AC 78 ms
8,960 KB
testcase_15 AC 79 ms
8,960 KB
testcase_16 AC 77 ms
8,960 KB
testcase_17 AC 47 ms
7,424 KB
testcase_18 AC 75 ms
9,088 KB
testcase_19 AC 79 ms
7,424 KB
testcase_20 AC 48 ms
7,424 KB
testcase_21 AC 60 ms
7,296 KB
testcase_22 AC 60 ms
7,296 KB
testcase_23 AC 58 ms
7,296 KB
testcase_24 AC 58 ms
7,424 KB
testcase_25 AC 59 ms
7,424 KB
testcase_26 AC 59 ms
7,424 KB
testcase_27 AC 69 ms
8,192 KB
testcase_28 AC 67 ms
8,064 KB
testcase_29 AC 68 ms
8,064 KB
testcase_30 AC 66 ms
7,936 KB
testcase_31 AC 68 ms
7,936 KB
testcase_32 AC 68 ms
7,936 KB
testcase_33 AC 68 ms
7,936 KB
testcase_34 AC 66 ms
7,808 KB
testcase_35 AC 68 ms
7,680 KB
testcase_36 AC 68 ms
7,808 KB
testcase_37 AC 17 ms
6,656 KB
testcase_38 AC 49 ms
7,424 KB
testcase_39 AC 62 ms
8,960 KB
testcase_40 AC 64 ms
8,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std;
using LL = long long;
using ULL = unsigned long long;
#define rep(i,n) for(int i=0; i<(n); i++)

int N;
int A[200000];
LL C[200001]={};
LL SC[200001]={};
LL SCC[200001]={};

int main(){
 cin>>N;
 rep(i,N) cin>>A[i];
 rep(i,N) C[A[i]]++;
 rep(i,200000) SC[i+1]=SC[i]+C[i+1];
 rep(i,200001) SCC[i]=i*C[i];
 rep(i,200000) SCC[i+1]+=SCC[i];

 LL ans=0;
 for(int i=1; i<=200000; i++){
  for(int j=0; j<=200000; j+=i){
   LL tmp = SCC[min(j+i-1,200000)] - SCC[j];
   tmp -= (SC[min(j+i-1,200000)] - SC[j]) * j;
   tmp *= C[i];
   ans += tmp;
  }
 }

 cout<<ans<<endl;

 return 0;
}
0