結果

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

ソースコード

diff #

#include <iostream>
#include <cmath>
#include <map>
using namespace std;
int main(){
    long long ans=1,N;
    map<int,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