101142: [AtCoder]ABC114 C - 755

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $300$ points

Problem Statement

You are given an integer $N$. Among the integers between $1$ and $N$ (inclusive), how many Shichi-Go-San numbers (literally "Seven-Five-Three numbers") are there?

Here, a Shichi-Go-San number is a positive integer that satisfies the following condition:

  • When the number is written in base ten, each of the digits 7, 5 and 3 appears at least once, and the other digits never appear.

Constraints

  • $1 \leq N < 10^9$
  • $N$ is an integer.

Input

Input is given from Standard Input in the following format:

$N$

Output

Print the number of the Shichi-Go-San numbers between $1$ and $N$ (inclusive).


Sample Input 1

575

Sample Output 1

4

There are four Shichi-Go-San numbers not greater than $575$: $357, 375, 537$ and $573$.


Sample Input 2

3600

Sample Output 2

13

There are $13$ Shichi-Go-San numbers not greater than $3600$: the above four numbers, $735, 753, 3357, 3375, 3537, 3557, 3573, 3575$ and $3577$.


Sample Input 3

999999999

Sample Output 3

26484

Input

题意翻译

你有一个整数 $N$。在 $1$ 到 $N$(含)之间的整数中,有多少个 _Shichi-Go-San_ 数字?(字面意思是 _七五三_ 数字) 此处,_Shichi-Go-San_ 数是满足以下条件的正整数: - 用十进制数写数字时,数字 `7`、`5` 和 `3` 至少出现一次,而其他数字从不出现。

加入题单

算法标签: