mirror of
https://github.com/tiennm99/codeforces.git
synced 2026-06-09 22:11:55 +00:00
[Init] Solved solutions
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
#include <iostream>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main()
|
||||
{
|
||||
int n, h, l = 0;
|
||||
cin >> n >> h;
|
||||
for (int i = 0; i < n; i++)
|
||||
{
|
||||
int t;
|
||||
cin >> t;
|
||||
if (t > h)
|
||||
{
|
||||
l++;
|
||||
}
|
||||
}
|
||||
cout << l + n;
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user