Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
98641 | 殷佳雨萱 | 判断完全数 | C++ | Wrong Answer | 1 MS | 276 KB | 198 | 2024-11-23 11:59:30 |
#include<iostream> using namespace std; int main(){ int a,b = 0; cin>>a; for(int i=1;i<=a/2;i++){ b = b+i; } if(b==a){ cout<<"YES"; } else{ cout<<"NO"; } return 0; }
------Input------
28
------Answer-----
YES
------Your output-----
NO