摘要: 1 #include 2 #include 3 #define N 50010 4 int phi[N],n,sum[N]; 5 void phi_table() 6 { 7 int i,j; 8 memset(phi,0,sizeof(phi)); 9 phi[1]=1; 10 for(i=2;i<=N;i++) 11 if(!... 阅读全文
posted @ 2017-10-16 19:08 ouyang_wsgwz 阅读(415) 评论(0) 推荐(0) 编辑