记录编号 301901 评测结果 AAAAAAAAAA
题目名称 [NOIP 2005]陶陶摘苹果 最终得分 100
用户昵称 Gravatarcoolkid 是否通过 通过
代码语言 C++ 运行时间 0.023 s
提交时间 2016-09-02 20:28:57 内存使用 0.23 MiB
显示代码纯文本
#include<cstdio>
const int HeightOfChair=30;
int main(){
	FILE *InputFile=fopen("apple.in","r"),*OutputFile=fopen("apple.out","w");
	int GottenApples=0;
	int HeightOfApples[10],HeightOfTaotao;
	for(int i=0;i<10;i++) fscanf(InputFile,"%d",&HeightOfApples[i]);
	fscanf(InputFile,"%d",&HeightOfTaotao);
	for(int i=0;i<10;i++){
		bool Reachable=HeightOfApples[i]-HeightOfChair<=HeightOfTaotao;
		if(Reachable) GottenApples++;
	}
	fprintf(OutputFile,"%d\n",GottenApples);

}