#12602: C++AC解


st990185@gmail.com (風神)

學校 : 臺北市立東湖國中
編號 : 67139
來源 : [220.136.196.36]
最後登入時間 :
2017-07-03 18:12:43
c203. 13185 - DPA Numbers I -- UVa13185 | From: [124.11.195.228] | 發表日期 : 2017-08-23 10:01

#include<bits/stdc++.h>
using namespace std;

int main(){
    int n;
    int sum;
    int t;
    while(cin>>t){
        for(int g=0;g<t;g++){
            sum=0;
            cin>>n;
            for(int i=1;i<n;i++){
                if(n%i==0){
                  sum+=i;
                }
            }

            if(sum==n){
                cout<<"perfect"<<endl;
            }else if(sum>n){
                cout<<"abundant"<<endl;
            }else{
                cout<<"deficient"<<endl;
            }
        }
    }
}
 
ZeroJudge Forum