結果

問題 No.888 約数の総和
ユーザー kikage
提出日時 2020-03-23 23:41:01
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 5 ms / 2,000 ms
コード長 431 bytes
コンパイル時間 1,001 ms
コンパイル使用メモリ 74,212 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-29 16:20:29
合計ジャッジ時間 1,810 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cmath>
#include <map>
using namespace std;
int main(){
    long long ans=1,N;
    map<long long,int> ex; 
    cin >> N;
    for(int i=2;i<=sqrt(N);i++){
        if(N%i==0){
            ex[i]++;N/=i;i--;
        }
    }
    if(N!=1){ex[N]++;}
    for(auto it=ex.begin();it!=ex.end();it++){
        ans*=(pow((*it).first,(*it).second+1)-1)/((*it).first-1);
    }
    cout << ans << endl;
    return 0;
}
0