結果
問題 | No.278 連続する整数の和(2) |
ユーザー | uenoku |
提出日時 | 2017-01-08 00:05:06 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 862 bytes |
コンパイル時間 | 477 ms |
コンパイル使用メモリ | 66,580 KB |
実行使用メモリ | 13,640 KB |
最終ジャッジ日時 | 2024-12-17 17:12:59 |
合計ジャッジ時間 | 16,307 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,020 KB |
testcase_01 | AC | 1 ms
9,888 KB |
testcase_02 | TLE | - |
testcase_03 | AC | 2 ms
9,892 KB |
testcase_04 | AC | 2 ms
13,640 KB |
testcase_05 | AC | 2 ms
9,892 KB |
testcase_06 | AC | 2 ms
13,632 KB |
testcase_07 | AC | 2 ms
9,892 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | TLE | - |
testcase_12 | AC | 2 ms
6,816 KB |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
ソースコード
#include <algorithm> #include <iostream> #include <map> #include <queue> #include <set> #include <string> #include <vector> #define rep(i, n) for (int i = 0; i < (n); i++) #define rrep(i, n) for (int i = (n)-1; i >= 0; i--) using namespace std; typedef long long int lli; /* * 係数がわかれば良い * sum suc(n) = (nx+n(n+1)/2) */ lli gcd(lli A, lli B) { if (B > A) swap(A, B); if (A % B == 0) return B; else return gcd(B, A % B); } lli sum_of_yakusuu(lli N) { lli ans = 0; lli cnt = 1; while (cnt * cnt <= N) { if (N % cnt == 0) ans += cnt + N / cnt; if (N == cnt * cnt) { ans -= cnt; } cnt++; } return ans; } int main() { lli n; cin >> n; cout << sum_of_yakusuu(gcd(n, (n & 1 ? (n + 1) / 2 * n : n / 2 * (n + 1)))) << endl; }