結果

問題 No.888 約数の総和
ユーザー vjudge1vjudge1
提出日時 2024-09-26 16:58:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 372 bytes
コンパイル時間 2,046 ms
コンパイル使用メモリ 200,616 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-26 16:58:30
合計ジャッジ時間 5,904 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define ll long long
ll a;
ll s = 1;
int main() {
    cin >> a;
    ll n = a;
    s += a;
    for(int i = 2; i * i <= a; i++) {
        ll c = 0;
        while(a % i == 0) {
            a /= i;
            c++;
        }
        s += (c * i);
    }
    if(a > 1 && a != n) {
        s += a;
    }
    cout << s;
    return 0;
}
0