比赛 十一中校庆欢乐赛 评测结果 AAAAAAAAAA
题目名称 陶陶摘苹果 最终得分 100
用户昵称 明天 运行时间 0.007 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2014-10-23 19:31:15
显示代码纯文本
#include <iostream>
#include <cstdio>
using namespace std;

int a[10],h,ans=0;
int main()
{
    freopen("apple.in","r",stdin);
    freopen("apple.out","w",stdout);
    
    for (int i=0; i<10; i++)
        scanf("%d",&a[i]);
    scanf("%d",&h);
    h+=30;
    for (int i=0; i<10; i++)
        if (a[i]<=h) ans++;
    printf("%d\n",ans);
    
    return 0;
}