记录编号 |
361065 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[NOIP 2005]陶陶摘苹果 |
最终得分 |
100 |
用户昵称 |
HeHe |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.002 s |
提交时间 |
2017-01-02 21:43:31 |
内存使用 |
0.28 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
using namespace std;
#define is_num(_num)\
(_num>='0'&&_num<='9')
int fast_read()
{
char _tmp(getchar());
int _result(0);
while(!is_num(_tmp))_tmp=getchar();
while(is_num(_tmp))
_result=(_result<<1)+(_result<<3)+_tmp-'0',
_tmp=getchar();
return _result;
}
int pingguo[10],h,ans;
int main()
{
freopen("apple.in","r",stdin);
freopen("apple.out","w",stdout);
for(int i=0;i<10;i++)
pingguo[i]=fast_read();
h=fast_read();h+=30;
for(int i=0;i<10;i++)
if(pingguo[i]<=h)ans++;
cout<<ans;
}