結果

問題 No.1737 One to N
ユーザー umezoumezo
提出日時 2021-11-12 22:14:15
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 531 bytes
コンパイル時間 2,083 ms
コンパイル使用メモリ 200,128 KB
最終ジャッジ日時 2025-01-25 16:54:40
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

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;

map<ll,ll> prime_factor(ll x){
  map<ll,ll> res;
  
  for(ll i=2;i*i<=x;i++){
    while(x%i==0){
      res[i]++;
      x/=i;
    }
  }
  if(x!=1) res[x]++;
  
  return res;
}

int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  ll n;
  cin>>n;
  
  map<ll,ll> m=prime_factor(n);
  
  ll ans=0;
  for(auto [a,b]:m) ans+=a*b;
  cout<<ans<<endl;
  
  
  return 0;
}
0