結果

問題 No.278 連続する整数の和(2)
ユーザー Lay_ecLay_ec
提出日時 2015-09-05 00:17:16
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 20 ms / 2,000 ms
コード長 779 bytes
コンパイル時間 539 ms
コンパイル使用メモリ 79,368 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-02 11:46:25
合計ジャッジ時間 1,136 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 20 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 14 ms
6,944 KB
testcase_14 AC 3 ms
6,944 KB
testcase_15 AC 8 ms
6,940 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <cmath>
#include <algorithm>
#include <cstdlib>
#include <ctime>
#include <cstdio>
#include <functional>
#include <set>
#include <sstream>
#include <map>
#include <queue>
#include <stack>

using namespace std;

long long calc(long long x){
    long long res=1;
    for(long long i=2;i*i<=x;i++){
        long long tmp=i;
        while(x%i==0){
            x/=i; tmp*=i;
        }

        //(1+i^1+i^2+...+i^(n-1))=(i^n)/(i-1)
        //tmp=i^n
        res*=(tmp-1)/(i-1);
    }
    
    //残ったxは素数
    if(x!=1){
        res*=(1+x);
    }
    
    return res;
}

int main()
{

    long long n;
    cin>>n;
    
    long long x;
    if(n%2) x=n;
    else x=n/2;

    cout<<calc(x)<<endl;

    return 0;
}
0