結果

問題 No.1233 割り切れない気持ち
ユーザー 👑 NachiaNachia
提出日時 2020-10-05 16:39:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 71 ms / 3,153 ms
コード長 616 bytes
コンパイル時間 509 ms
コンパイル使用メモリ 65,944 KB
実行使用メモリ 8,920 KB
最終ジャッジ日時 2024-07-19 20:42:59
合計ジャッジ時間 4,605 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
6,992 KB
testcase_01 AC 14 ms
7,380 KB
testcase_02 AC 14 ms
7,632 KB
testcase_03 AC 13 ms
8,524 KB
testcase_04 AC 13 ms
8,400 KB
testcase_05 AC 14 ms
7,120 KB
testcase_06 AC 13 ms
8,268 KB
testcase_07 AC 29 ms
7,828 KB
testcase_08 AC 37 ms
7,984 KB
testcase_09 AC 58 ms
8,400 KB
testcase_10 AC 67 ms
8,704 KB
testcase_11 AC 27 ms
8,200 KB
testcase_12 AC 71 ms
8,904 KB
testcase_13 AC 69 ms
8,792 KB
testcase_14 AC 71 ms
8,796 KB
testcase_15 AC 68 ms
8,872 KB
testcase_16 AC 65 ms
8,908 KB
testcase_17 AC 42 ms
8,024 KB
testcase_18 AC 68 ms
8,780 KB
testcase_19 AC 71 ms
7,424 KB
testcase_20 AC 42 ms
8,664 KB
testcase_21 AC 52 ms
8,028 KB
testcase_22 AC 55 ms
8,408 KB
testcase_23 AC 51 ms
8,280 KB
testcase_24 AC 52 ms
8,408 KB
testcase_25 AC 51 ms
8,796 KB
testcase_26 AC 54 ms
8,408 KB
testcase_27 AC 62 ms
8,412 KB
testcase_28 AC 63 ms
8,280 KB
testcase_29 AC 65 ms
8,920 KB
testcase_30 AC 61 ms
8,788 KB
testcase_31 AC 65 ms
8,148 KB
testcase_32 AC 62 ms
8,152 KB
testcase_33 AC 60 ms
8,152 KB
testcase_34 AC 60 ms
8,784 KB
testcase_35 AC 59 ms
8,020 KB
testcase_36 AC 62 ms
8,412 KB
testcase_37 AC 15 ms
8,524 KB
testcase_38 AC 45 ms
8,408 KB
testcase_39 AC 56 ms
8,784 KB
testcase_40 AC 57 ms
8,908 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