比赛 防止浮躁的小练习v0.7 评测结果 AAAAAAAAAA
题目名称 Pell方程 最终得分 100
用户昵称 Foenix 运行时间 0.013 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2016-10-27 17:18:20
显示代码纯文本
#include <cstdio>
#include <iostream>
using namespace std;
int main(){
	freopen("pell.in","r",stdin);
	 freopen("pell.out","w",stdout);
	int N;
	scanf("%d",&N);
	int x=1,y;
	while(1){
		for(y=1;y<=x;y++){
			if(x*x - N*y*y == 1){
				printf("%d %d\n",x,y);
				return 0;
			}
		}
		x++;
	}
	return 0;
}