結果

問題 No.888 約数の総和
ユーザー ajiruajiru
提出日時 2020-02-08 03:23:24
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 243 bytes
コンパイル時間 527 ms
コンパイル使用メモリ 67,392 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-25 08:37:50
合計ジャッジ時間 1,703 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 15 WA * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cmath>
using namespace std;
int main(void) {
	long long n;
	cin >> n;
	long long ans = 0;
	for (int i = 1; i <= sqrt(n); ++i) {
		if (n % i == 0)
			ans += i,
			ans += n / i;
	}
	cout << ans << endl;
	return 0;
}
0