Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
98650 殷佳雨萱 判断完全数 C++ Accepted 1 MS 272 KB 214 2024-11-23 12:04:46

Tests(10/10):


Code:

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