結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,756 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 1,486 ms
6,940 KB
testcase_20 TLE -
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=0;
    if(n==1)return false;
    sum+=1+n;
    for(i=2;(ll)i*i<=n;i+=2){
        if(n%i==0){
            sum+=i+n/i;
            if(sum>2*n)return false;
        }
    }
    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