Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
1861 张宸瑜 判断完全数 C++ Wrong Answer 0 MS 256 KB 316 2023-11-25 17:43:40

Tests(0/10):


Code:

# include<iostream> # include<cstdio> # include<iomanip> using namespace std; int main(){ int a,b=0; cin>>a; for(int i=1;i<=a-1;i++){ if(a%i==0){ b=b+i; } } if(a==b){ cout<<"Yes"; } else{ cout<<"No"; } return 0; }


Run Info:

------Input------
789
------Answer-----
NO
------Your output-----
No