| ||||||||||
| Online Judge | Problem Set | Authors | Online Contests | User | ||||||
|---|---|---|---|---|---|---|---|---|---|---|
| Web Board Home Page F.A.Qs Statistical Charts | Current Contest Past Contests Scheduled Contests Award Contest | |||||||||
帅~In Reply To:被这代码,感动得,内牛满面 Posted by:denghongchao at 2009-12-05 15:04:18 > while(scanf("%d",&n),n != 0){
> if(n == 1){
> printf("0\n"); continue;
> }
> ans = n;
> for(int i = 2;i*i <= n;++i){
> if( n % i == 0 ){
> ans = ans - ans/i;
> while(n%i == 0){
> n /= i;
> }
> }
> }
> // n is prime itself
> if(n != 1) ans = ans - ans / n;
> printf("%d\n",ans);
> }
Followed by: Post your reply here: |
All Rights Reserved 2003-2013 Ying Fuchen,Xu Pengcheng,Xie Di
Any problem, Please Contact Administrator