比赛 20131130 评测结果 AWWWWWWWWW
题目名称 参加考试 最终得分 10
用户昵称 Strawberry 运行时间 0.004 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2013-11-30 15:08:50
显示代码纯文本
#include<fstream>
using namespace std;
ifstream fi("teststr.in");
ofstream fo("teststr.out");
int n,k,x;
int ans=0;
int main(){
	fi>>n>>k;
	for(int i=1;i<=k;i++){
		fi>>x;
		ans=max(ans,x);
	}
	fo<<ans<<endl;
	return 0;
}