比赛 |
防止浮躁的小练习v0.7 |
评测结果 |
AAAAAAAAAA |
题目名称 |
Pell方程 |
最终得分 |
100 |
用户昵称 |
Bravo ChaoS |
运行时间 |
0.009 s |
代码语言 |
C++ |
内存使用 |
0.28 MiB |
提交时间 |
2016-10-27 17:42:32 |
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<cmath>
#include<iostream>
#include<algorithm>
using namespace std;
int n;
int f(int y,int n)
{
double t;
t=y*y*n+1;
t=sqrt(t);
if(t-(int)t==0 && t!=0) return t;
else return -1;
}
int main()
{
freopen("pell.in","r",stdin);
freopen("pell.out","w",stdout);
cin>>n;
for(int i=1,ans;;++i)
{
ans=f(i,n);
if(ans>=0) {cout<<ans<<' '<<i;break;}
}
return 0;
}