首页 > 其他 > 详细

POJ 2183

时间:2014-09-14 23:19:48      阅读:178      评论:0      收藏:0      [点我收藏+]

模拟题

#include <iostream>
#include <cstdio>
#include <algorithm>

using namespace std;

int p[1000000];

int main(){
	int n;
	while(scanf("%d",&n)!=EOF){
		memset(p,0,sizeof(p));
		int i;
		for(i=1;;i++){
			n/=10;
			n%=10000;
			n*=n;
			n%=1000000;
			if(p[n]>0){
				break;
			}
			p[n]=i;
		}
		printf("%d %d %d\n",n,i-p[n],i);
	}
	return 0;
}

  

POJ 2183

原文:http://www.cnblogs.com/jie-dcai/p/3971801.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!