結果

問題 No.888 約数の総和
ユーザー vjudge1
提出日時 2024-09-26 00:29:02
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 386 bytes
コンパイル時間 989 ms
コンパイル使用メモリ 98,568 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-26 00:29:05
合計ジャッジ時間 1,836 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 15 WA * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <math.h>
using namespace std;
int demuoc(int n)
{
    int dem = 0; 
    for(int i = 1; i <= sqrt(n); i++)
    {
        if(n % i == 0)
        {
            dem += i;
            if(i != n / i)
            {
                dem += n/i; 
            }
        }
    }
    return dem;
}
int main()
{
    int n;
    cin>>n;
    cout<<demuoc(n);
    return 0;
}
0