(以“分类:模拟与排序 ==摘要== {{信息题|Soapbear and Honey|http://acm.whu.edu.cn/land/problem/detail?problem_id=1521|1|100|输出格式|0|time=2014-10-30 1...”为内容创建页面)
 
(修复等号转义)
 
第1行: 第1行:
 
[[分类:模拟与排序]]
 
[[分类:模拟与排序]]
 
==摘要==
 
==摘要==
{{信息题|Soapbear and Honey|http://acm.whu.edu.cn/land/problem/detail?problem_id=1521|1|100|输出格式|0|time=2014-10-30 18:51:40}}
+
{{信息题|Soapbear and Honey|http://acm.whu.edu.cn/land/problem/detail?problem_id{{=}}1521|1|100|输出格式|0|time=2014-10-30 18:51:40}}
 
==题意==
 
==题意==
 
在n个数中求不大于m的数的个数。
 
在n个数中求不大于m的数的个数。

2014年11月1日 (六) 23:18的最后版本

摘要

题目链接 难度等级 完成状态 完成分数 最后编辑时间 失误原因(初次提交分数)
Soapbear and Honey ★☆☆☆☆ 答案正确 100 2014-10-30 18:51:40 输出格式(0)

题意

在n个数中求不大于m的数的个数。

题解

果然是送分题。 但是 ……第一次交没换行

代码

1521.cpp代码已折叠
展开折叠内容
#include<cstdio>
int main()
{
    int n,N,Hx,Hi,Ans=0;
    scanf("%d",&n);
    while(n--)
    {
        Ans=0;
        scanf("%d%d",&N,&Hx);
        for(int i=1;i<=N;++i)
        {
            scanf("%d",&Hi);
            Ans+=(Hi<=Hx);
        }
        printf("%d",Ans);
    }
    return 0;
}

著作权声明[编辑]

关于[编辑]