結果
| 問題 |
No.888 約数の総和
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-09-21 01:37:07 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 13 ms / 2,000 ms |
| コード長 | 879 bytes |
| コンパイル時間 | 1,662 ms |
| コンパイル使用メモリ | 169,360 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-09-15 07:09:55 |
| 合計ジャッジ時間 | 2,597 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge6 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 30 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define FOR(i, m, n) for (int i = (m); i < (n); i++)
#define REP(i, n) FOR(i, 0, n)
#define REP1(i, n) FOR(i, 1, (n) + 1)
#define ALL(c) (c).begin(), (c).end()
template<class T> inline bool chmin(T& a, T b) {if (a > b) {a = b; return true;} return false;}
template<class T> inline bool chmax(T& a, T b) {if (a < b) {a = b; return true;} return false;}
const int MOD = 1000000007;
const int INF = 1000000001;
vector<ll> divisors(ll n) {
vector<ll> v;
for (ll i = 1; i * i <= n; i++) {
if (n % i == 0) {
v.push_back(i);
if (i * i != n) {
v.push_back(n / i);
}
}
}
return v;
}
int main() {
ll n;
cin >> n;
vector<ll> d = divisors(n);
ll t = 0;
for (ll x : d) {
t += x;
}
cout << t << endl;
}