1444: 【基础】数的统计
Memory Limit:32 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:3
Solved:3
Description
试计算在区间1到n的所有整数中,数字x(0≤x≤9)共出现了多少次?例如,在 1到11中,即在 1,2,3,4,5,6,7,8,9,10,11中,数字1出现了4次。再比如:1到11中,数字0只出现了1次。
Input
2个整数n和x之间用一个空格隔开。(n是一个int范围内的整数)
Output
1个整数,表示x出现的次数。
Sample Input Copy
11 1
Sample Output Copy
4