跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2581. Roma and Lucky Numbers

    ID: 2587 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 1 上传者: 标签>模拟编程与模拟入门难度共享题库Codeforces英文题面题目来源题面语言

Roma and Lucky Numbers

题目描述

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 47, 744, 4 are lucky and 5, 17, 467 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 n, k (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
3 4
1 2 4
Output
3
Input
3 2
447 44 77
Output
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.


题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 2230 题。保留原作者与原赛事署名。