CodeFoeces-677A

题目

原题链接:A. Vanya and Fence

题意

Vanya和他的n个朋友要偷偷从别人的门前经过,这户人家的篱笆高h,若身高超过篱笆的就得蹲下来(每个人的身高不会超过2h),每个人站着占地宽度1,蹲下占2。问这群人占地多宽。

代码

#include
using namespace std;
int main() {
    int n,h,ah;#题目
原题链接:[A. Vanya and Fence](http://codeforces.com/problemset/problem/677/A)
#题意
Vanya和他的n个朋友要偷偷从别人的门前经过,这户人家的篱笆高h,若身高超过篱笆的就得蹲下来(每个人的身高不会超过2h),每个人站着占地宽度1,蹲下占2。问这群人占地多宽。
#代码

include

using namespace std;
int main() {
int n,h,ah;
int ans=0;
scanf("%d%d",&n,&h);
for(int i=0;i scanf("%d",&ah);
if(ah<=h)
ans+=1;
else
ans+=2;
}
printf("%d\n",ans);
return 0;
}

    int ans=0;
    scanf("%d%d",&n,&h);
    for(int i=0;i

你可能感兴趣的:(CodeFoeces-677A)