比赛 暑假培训B班二测 评测结果 WWWWWWWWWWW
题目名称 待售干草 最终得分 0
用户昵称 zsw 运行时间 0.004 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2012-07-22 11:21:34
显示代码纯文本
#include <iostream>
#include <fstream>
using namespace std;
int main(){
	ifstream fin("hay4sale.in");
	ofstream fout("hay4sale.out");
	int a[5000]={0},b=0,c=0,h=0,d,sum=0;
	int e=0,f=0,g=0;
	fin>>c>>h;
	for(b=0;b<h;b++)
	{
		fin>>a[h];
	}
	for(d=0;d<5000;d++)
	{
		if(sum+a[d]>c){break;}
		else{sum+=a[d];}
	}
	fout<<sum;
	fin.close();
	fout.close();
	return 0;
}