比赛 |
防止浮躁的小练习v0.7 |
评测结果 |
AAAAAAAAAA |
题目名称 |
Pell方程 |
最终得分 |
100 |
用户昵称 |
jjky |
运行时间 |
0.014 s |
代码语言 |
C++ |
内存使用 |
0.31 MiB |
提交时间 |
2016-10-27 21:31:32 |
显示代码纯文本
#include<stdio.h>
#include<stdlib.h>
#include<algorithm>
#include<iostream>
#include<queue>
#include<string.h>
#include<sstream>
#include<math.h>
using namespace std;
int n;
int main()
{
freopen("pell.in","r",stdin);
freopen("pell.out","w",stdout);
int i,j,x;
float x_;
cin>>n;
for(i=1;;i++)
{
x_=sqrt(1+n*i*i);
x=x_;
if(x==x_)
{
cout<<x<<" "<<i<<endl;
break;
}
}
return 0;
}