#1818: 幫忙


sexmaltreat (稱霸ㄍ頭)

學校 : 臺北市立成功高級中學
編號 : 6136
來源 : [220.181.108.176]
最後登入時間 :
2012-04-20 21:28:37
d111. 10110 - Light, more light -- UVa10110 | From: [140.115.5.114] | 發表日期 : 2009-04-19 22:22

程式都很簡短ㄌ 可使一直TLE

# include <iostream>             
using namespace std;           
int main()           
{           
 int a,s;  
 while(cin>>a)  
 {
 s=0;  
 if(a==0)break;  
 for(int q=2;q<a-1;q++)  
 {  
  if(a%q==0)  
  s++;         
 }  
 if(s%2==0)  
 cout<<"no"<<endl;  
 else 
 cout<<"yes"<<endl;  
                
 }  
   
          
 system("pause");           
 return 0;           
}       

 
ZeroJudge Forum