hdu3652

maksyuki 发表于 oj 分类,标签:
0

B-number

Problem Description

A wqb-number, or B-number for short, is a non-negative integer whose decimal form contains the sub- string "13" and can be divided by 13. For example, 130 and 2613 are wqb-numbers, but 143 and 2639 are not. Your task is to calculate how many wqb-numbers from 1 to n for a given integer n.

Input

Process till EOF. In each line, there is one positive integer n(1 <= n <= 1000000000).

Output

Print each answer in a single line.

Sample Input

13
100
200
1000

Sample Output

1

1

2

2

Author

wqb0039

Source

2010 Asia Regional Chengdu Site —— Online Contest

 

题目类型:数位DP

算法分析:dp[i][j][k]表示满足状态为k,且模上13后值为j的i位数个数,类似于HDU3555,只不过是在递归边界上还要额外满足j == 0,在每次向低位搜索时都要计算模值:mod = (mod * 10 + i) % 13