比赛 20131130 评测结果 AWAAWWWWWW
题目名称 参加考试 最终得分 30
用户昵称 KZNS 运行时间 0.005 s
代码语言 C++ 内存使用 0.32 MiB
提交时间 2015-09-19 19:38:07
显示代码纯文本
// KZ's
#include<fstream>
using namespace std;
int main() {
	ios::sync_with_stdio(false);
	ifstream fin ("teststr.in");
	ofstream fout ("teststr.out");
	int n,k,t,a=0x7fffffff,b=0x7fffffff;
	fin>>n>>k;
	for (int i=0;i<k;i++) {
		fin>>t;
		if(t<a)
			a=t;
		if(n-t<b)
			b=n-t;
	}
	fout<<max(a,b);
	return 0;
}
// UBWH