POJ 1091 跳蚤
摘要:
1 #include<stdio.h> 2 int prime[10]; //十个就够了,因为m最多有不超过10个素因子 3 long long pow(long long x,int y)//求x^y幂,用大整数 4 { 5 long long res=1; 6 while(y--) 7 res*=x; 8 return res; 9 }10 int main()11 {12 int i,j,n,m,t,tol=0;13 scanf("%d%d",&n,&m);14 t=m;15 long long re... 阅读全文
posted @ 2013-03-25 14:22 小花熊 阅读(504) 评论(0) 推荐(3) 编辑