結果
問題 | No.2795 Perfect Number |
ユーザー | Kou0406 |
提出日時 | 2024-08-01 12:10:58 |
言語 | C++23(gcc13) (gcc 13.2.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 878 bytes |
コンパイル時間 | 1,062 ms |
コンパイル使用メモリ | 85,708 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-08-01 12:11:04 |
合計ジャッジ時間 | 5,547 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,752 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 4 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | TLE | - |
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 | -- | - |
ソースコード
#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; } if(sum>2*n)return false; 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; 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; }