CF677A.Vanya and Fence

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Vanya and his friends are walking along the fence of height hh and they do not want the guard to notice them. In order to achieve this the height of each of the friends should not exceed hh . If the height of some person is greater than hh he can bend down and then he surely won't be noticed by the guard. The height of the ii -th person is equal to aia_{i} .

Consider the width of the person walking as usual to be equal to 11 , while the width of the bent person is equal to 22 . Friends want to talk to each other while walking, so they would like to walk in a single row. What is the minimum width of the road, such that friends can walk in a row and remain unattended by the guard?

输入格式

The first line of the input contains two integers nn and hh ( 1<=n<=10001<=n<=1000 , 1<=h<=10001<=h<=1000 ) — the number of friends and the height of the fence, respectively.

The second line contains nn integers aia_{i} ( 1<=ai<=2h1<=a_{i}<=2h ), the ii -th of them is equal to the height of the ii -th person.

输出格式

Print a single integer — the minimum possible valid width of the road.

输入输出样例

  • 输入#1

    3 7
    4 5 14
    

    输出#1

    4
    
  • 输入#2

    6 1
    1 1 1 1 1 1
    

    输出#2

    6
    
  • 输入#3

    6 5
    7 6 8 9 10 5
    

    输出#3

    11
    

说明/提示

In the first sample, only person number 33 must bend down, so the required width is equal to 1+1+2=41+1+2=4 .

In the second sample, all friends are short enough and no one has to bend, so the width 1+1+1+1+1+1=61+1+1+1+1+1=6 is enough.

In the third sample, all the persons have to bend, except the last one. The required minimum width of the road is equal to 2+2+2+2+2+1=112+2+2+2+2+1=11 .

首页