比赛 20140711B班小测 评测结果 WAWAAAEE
题目名称 等差数列 最终得分 50
用户昵称 努力吧 运行时间 3.911 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2014-07-11 16:29:59
显示代码纯文本
#include<fstream>
using namespace std;
int main()
{
	ifstream fi("ariprog.in");
	ofstream fo("ariprog.out");
	bool c[100110];
	int n,m;
	fi>>n>>m;
	for(int i=1;i<=100100;i++)
		c[i]=false;
	for(int i=0;i<=m;i++)
		for(int j=0;j<=m;j++)
		{
			c[i*i+j*j]=true;
		}
	for(int b=1;b<=m*m;b++)
		for(int a=1;a<=m*m;a++)
		{
			int x=a,s=0;
			while(c[x]==true)
			{
				s++;
				x=x+b;
			}
			if(s>=n)
				fo<<a<<" "<<b<<endl;
		}
		fi.close();
		fo.close();
	return 0;
}