結果
問題 | No.278 連続する整数の和(2) |
ユーザー | srup٩(๑`н´๑)۶ |
提出日時 | 2016-11-08 17:51:21 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 914 bytes |
コンパイル時間 | 602 ms |
コンパイル使用メモリ | 58,684 KB |
実行使用メモリ | 16,840 KB |
最終ジャッジ日時 | 2024-11-25 04:55:25 |
合計ジャッジ時間 | 40,388 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,636 KB |
testcase_01 | AC | 2 ms
9,892 KB |
testcase_02 | TLE | - |
testcase_03 | AC | 1 ms
9,892 KB |
testcase_04 | AC | 2 ms
13,636 KB |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | AC | 2 ms
13,632 KB |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
ソースコード
#include <iostream> #include <vector> #include <cstdio> #include <algorithm> using namespace std; typedef long long ll; typedef vector<int> vint; typedef pair<int,int> pint; typedef vector<pint> vpint; #define rep(i,n) for(int i=0;i<(n);i++) #define reps(i,f,n) for(int i=(f);i<(n);i++) #define each(it,v) for(__typeof((v).begin()) it=(v).begin();it!=(v).end();it++) #define all(v) (v).begin(),(v).end() #define pb push_back #define mp make_pair #define fi first #define se second #define chmax(a, b) a = (((a)<(b)) ? (b) : (a)) #define chmin(a, b) a = (((a)>(b)) ? (b) : (a)) const int MOD = 1e9 + 7; const int INF = 1e9; int main(void){ ll n; cin >> n; ll ma; if(n % 2 == 0){ ma = n / 2; }else{ ma = n; } // printf("%lld\n", ma); ll ans = 0; for (int i = 1; i <= ma; ++i){ // printf("i %d\n", i); if(ma % i == 0){ // printf("%d\n", i); ans += i; } } printf("%lld\n", ans); return 0; }