Codeforces Round #160 (Div. 2)-A. Roma and Lucky Numbers_html/css_WEB-ITnose
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 41 2 4
output
input
3 2447 44 77
output
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.
题目大意:脑残呀,开始竟然没读懂题意。给出n个数,让你看这么多数中,有多少个是包含不多于k个幸运数字的,其中4和7是幸运数字。
解题思路:直接判断每个数数否满足情况就好了。
AC代码:
#include#include #include #include #include #include #include #include
上一篇: html 5 全局属性_html/css_WEB-ITnose
下一篇: PHP模板引擎Smarty内建函数foreach,foreachelse用法分析,smartyforeachelse
推荐阅读
-
Codeforces Round #156 (Div. 2)-A. Greg's Workout_html/css_WEB-ITnose
-
Codeforces Round #107 (Div. 2)-A. Soft Drinking_html/css_WEB-ITnose
-
Codeforces Round #191 (Div. 2)-A. Flipping Game_html/css_WEB-ITnose
-
Codeforces Beta Round #75 (Div. 2)-A. Chips_html/css_WEB-ITnose
-
Codeforces Round #144 (Div. 2)-A. Perfect Permutation_html/css_WEB-ITnose
-
Codeforces Round #135 (Div. 2)-A. k-String_html/css_WEB-ITnose
-
Codeforces Round #256 (Div. 2) A. Rewards_html/css_WEB-ITnose
-
Codeforces Round #175 (Div. 2)-A. Slightly Decreasing Permutations_html/css_WEB-ITnose
-
Codeforces Round #112 (Div. 2)-A. Supercentral Point_html/css_WEB-ITnose
-
Codeforces Round #190 (Div. 2)-A. Ciel and Dancing_html/css_WEB-ITnose