Algorithm


A. Roma and Lucky Numbers
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Roma (a popular Russian name that means 'Roman') loves the Little Lvov Elephant's lucky numbers.

Let us remind you that lucky numbers are positive integers whose decimal representation only contains lucky digits 4 and 7. For example, numbers 477444 are lucky and 517467 are not.

Roma's got n positive integers. He wonders, how many of those integers have not more than k lucky digits? Help him, write the program that solves the problem.

Input

The first line contains two integers nk (1 ≤ n, k ≤ 100). The second line contains n integers ai (1 ≤ ai ≤ 109) — the numbers that Roma has.

The numbers in the lines are separated by single spaces.

Output

In a single line print a single integer — the answer to the problem.

Examples
input
Copy
3 4
1 2 4
output
Copy
3
input
Copy
3 2
447 44 77
output
Copy
2
Note

In the first sample all numbers contain at most four lucky digits, so the answer is 3.

In the second sample number 447 doesn't fit in, as it contains more than two lucky digits. All other numbers are fine, so the answer is 2.

 

Code Examples

#1 Code Example with C++ Programming

Code - C++ Programming

#include <iostream>
#include <string>

using namespace std;

int countLucky(string tmp) {
	int c = 0;

	for (int i = 0; i < tmp.length(); i++) {
		if (tmp[i] == '4' || tmp[i] == '7')
			c++;
	}

	return c;
}

int main() {
	int x, y, c = 0;
	string tmp;
	cin >> x >> y;

	while (x--) {
		cin >> tmp;

		if (countLucky(tmp) <= y)
			c++;
	}

	cout << c << endl;

	return 0;
}
Copy The Code & Try With Live Editor

Input

x
+
cmd
3 4
1 2 4

Output

x
+
cmd
3
Advertisements

Demonstration


Codeforces Solution-Roma and Lucky Numbers-Solution in C, C++, Java, Python

Previous
Codeforces solution 1080-B-B. Margarite and the best present codeforces solution
Next
CodeChef solution DETSCORE - Determine the Score CodeChef solution C,C+