您的位置:首页 > 其它

codeforces 160 Div2 A

2013-01-15 02:09 1686 查看
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.

Sample test(s)

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.

水~

按字符读取数字,计算每个数字lucky number的个数。

附代码:

#include<stdio.h>

int main(void)
{
int i, count=0, amount, k, ans=0;
char ch;

scanf("%d %d", &amount, &k);
ch=getchar();
for( i=0; i<amount; i++)
{
count=0;
while( (ch=getchar()) != '\n' && ch != ' ' )
{
if( ch=='4' || ch=='7' )
count++;
}
if( count<=k )
ans++;
}
printf("%d\n", ans);

return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: