結果

問題 No.888 約数の総和
ユーザー ke-mi
提出日時 2020-12-02 13:30:54
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 346 bytes
コンパイル時間 1,479 ms
コンパイル使用メモリ 167,120 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-13 09:50:11
合計ジャッジ時間 2,724 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 15 WA * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

// yukicoder No.888
#include <bits/stdc++.h>
#define ll long long

using namespace std;

int main()
{
    ll n;
    cin >> n;

    ll ans = 1;
    ll lim = sqrt(n);

    for (int i = 1; i <= lim; ++i) {
        if (n % i == 0) {
            ll tmp = i + n / i;
            ans += tmp;
        }
    }

    cout << ans -1 << "\n";

    return 0;
}
0