C - 755 Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 300

問題文

整数 N が与えられます。1 以上 N 以下の整数のうち、七五三数 は何個あるでしょうか?

ここで、七五三数とは以下の条件を満たす正の整数です。

  • 十進法で表記したとき、数字 7, 5, 3 がそれぞれ 1 回以上現れ、これら以外の数字は現れない。

制約

  • 1 \leq N < 10^9
  • N は整数である。

入力

入力は以下の形式で標準入力から与えられる。

N

出力

1 以上 N 以下の七五三数の個数を出力せよ。


入力例 1

575

出力例 1

4

575 以下の七五三数は、357, 375, 537, 5734 個です。


入力例 2

3600

出力例 2

13

3600 以下の七五三数は、上記の 4 個と 735, 753, 3357, 3375, 3537, 3557, 3573, 3575, 3577 の計 13 個です。


入力例 3

999999999

出力例 3

26484

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