結果
問題 | No.278 連続する整数の和(2) |
ユーザー | Tatamo |
提出日時 | 2016-11-01 18:18:19 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 14 ms / 2,000 ms |
コード長 | 1,427 bytes |
コンパイル時間 | 640 ms |
コンパイル使用メモリ | 62,584 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-02 11:54:34 |
合計ジャッジ時間 | 1,226 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 11 ms
5,376 KB |
testcase_03 | AC | 2 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 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 11 ms
5,376 KB |
testcase_09 | AC | 11 ms
5,376 KB |
testcase_10 | AC | 14 ms
5,376 KB |
testcase_11 | AC | 10 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 9 ms
5,376 KB |
testcase_14 | AC | 7 ms
5,376 KB |
testcase_15 | AC | 8 ms
5,376 KB |
testcase_16 | AC | 6 ms
5,376 KB |
testcase_17 | AC | 11 ms
5,376 KB |
ソースコード
#include<iostream> #include<utility> #include<vector> using namespace std; #define cerr cerr << "[DBG] " #define DBG(x) cerr << #x << ": " << x << endl // http://genkisugimoto.com/jp/blog/procon/2015/04/15/print-debug-technique-in-cpp.html template<typename T1, typename T2> ostream& operator<<(ostream& s, const pair<T1, T2>& p) {return s << "(" << p.first << ", " << p.second << ")";} template<typename T> ostream& operator<<(ostream& s, const vector<T>& v) { for (int i = 0; i < (int)v.size(); ++i) { s << v[i]; if (i < (int)v.size() - 1) s << "\t"; } return s; } typedef long long ll; int main(){ ll n; cin >> n; // n:偶数→ n/2の約数の総和 // n:奇数→ nの約数の総和 ll m; if(n%2 == 0){ m = n/2; } else { m = n; } ll x = m; vector<pair<ll, ll>> c; for(ll i=2; i*i<=m; i++){ if(m%i != 0) { continue; } ll cnt = 0; while(x%i == 0){ x /= i; cnt+=1; } c.push_back(make_pair(i,cnt)); } if(x > 1) { bool flg = true; for(int i=0; i<(int)c.size(); i++){ if(c[i].first == x){ c[i].second += 1; flg = false; break; } } if(flg){ c.push_back(make_pair(x, 1)); } } //cerr << c << endl; ll result = 1; for(ll i=0; i<(int)c.size(); i++){ ll p = c[i].first; ll cnt = c[i].second; ll tmp = 1; ll x = 0; for(ll ii=0; ii<=cnt; ii++){ x += tmp; if(ii<cnt) tmp *= p; } result *= x; } cout << result << endl; return 0; }