結果

問題 No.888 約数の総和
ユーザー milanis48663220milanis48663220
提出日時 2019-09-20 21:46:12
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 418 bytes
コンパイル時間 469 ms
コンパイル使用メモリ 54,120 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-14 17:07:53
合計ジャッジ時間 1,669 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 1 ms
6,944 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1 ms
6,944 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 2 ms
6,944 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 12 ms
6,940 KB
testcase_23 WA -
testcase_24 AC 6 ms
6,944 KB
testcase_25 WA -
testcase_26 AC 7 ms
6,940 KB
testcase_27 AC 10 ms
6,940 KB
testcase_28 AC 10 ms
6,944 KB
testcase_29 WA -
testcase_30 AC 10 ms
6,940 KB
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using namespace std;

typedef long long ll;

int main(){
    ll N;
    cin >> N;
    ll n = N;
    ll ans = 1;
    for(ll i = 2; i*i <= N; i++){
        ll sum = 1;
        ll tmp = 1;
        while(n%i == 0){
            n /= i;
            tmp *= i;
            sum += tmp;
        }
        //cout << tmp << ' ';
        ans *= sum;
    }
    if(n != 0) ans *= (n+1);
    cout << ans << endl;
}
0