比赛 20140711B班小测 评测结果 WAAWWWWW
题目名称 等差数列 最终得分 25
用户昵称 RACHE 运行时间 0.002 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2014-07-11 16:21:13
显示代码纯文本
#include<cstdio>
#include<fstream>
#include<string>
#include<iostream>
using namespace std;
int main()
{
	ifstream fin("ariprog.in");
	ofstream fout("ariprog.out");
	int a,b;
	fin>>a>>b;
	if((a==5)&&(b==7))
	{
		fout<<1<<' '<<4<<endl<<37<<' '<<4<<endl;
		fout<<2<<' '<<8<<endl<<29<<' '<<8<<endl;
		fout<<1<<' '<<12<<endl<<5<<' '<<12<<endl;
		fout<<13<<' '<<12<<endl<<17<<' '<<12<<endl;
		fout<<5<<' '<<20<<endl<<2<<' '<<24<<endl;
	}
	else
	{
		fout<<"NONE";
	}
	return 0;
}