結果
問題 | No.278 連続する整数の和(2) |
ユーザー | koyopro |
提出日時 | 2015-10-10 12:19:49 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 743 bytes |
コンパイル時間 | 1,505 ms |
コンパイル使用メモリ | 166,032 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-20 04:58:06 |
合計ジャッジ時間 | 5,022 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
ソースコード
#include "bits/stdc++.h" using namespace std; #define int long long #define REP(i, n) for(int i=0; i<(n); i++) #define FOR(i, a, b) for(int i=(a);i<(b);i++) int gcd(int a, int b) { if (!b) return a; return gcd(b, a%b); } int N,T; signed main() { cin >> N; int s; if (N % 2) { s = (N - 1) / 2 * N; } else { s = N / 2 * (N - 1); } int g = gcd(s, N); map<int, int> I; FOR(k,2,1e8) { while(g % k == 0) { g /= k; I[k]++; } if (g == 1) break; } int ans = 1; for (auto&& kv : I) { int s = 1; REP(i,kv.second) { s += kv.first * (i + 1); } ans *= s; } cout << ans << endl; return 0; }