結果

問題 No.2795 Perfect Number
ユーザー Kou0406Kou0406
提出日時 2024-08-01 12:07:50
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 812 bytes
コンパイル時間 888 ms
コンパイル使用メモリ 85,556 KB
実行使用メモリ 13,884 KB
最終ジャッジ日時 2024-08-01 12:07:55
合計ジャッジ時間 5,235 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,884 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 4 ms
6,944 KB
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#define rep(i,n) for(i=0;i<(int)(n);i++)
using namespace std;
typedef long long ll;

ll n;

bool judge(ll n){
    int i,j;
    ll sum=1,nn=n,tmp;
    if(nn%2==0){
        tmp=0;
        while(nn%2==0){
            nn/=2;
            tmp*=2;
            tmp++;
        }
        tmp*=2;
        tmp++;
        sum*=tmp;
    }
    for(i=3;(ll)i*i<=n||nn>1;i+=2){
        if(nn%i==0){
            tmp=0;
            while(nn%i==0){
                nn/=i;
                tmp*=i;
                tmp++;
            }
            tmp*=i;
            tmp++;
            sum*=tmp;
        }
    }
    return sum==2*n;
}

int main(){
    int i,j;
    //rep(i,1000)if(judge(i+1))printf("%d\n",i+1);return 0;
    scanf("%lld",&n);
    printf("%s\n",judge(n)?"Yes":"No");
    return 0;
}
0