4250.Lucky Sum of Digits

Time Limit: 1s Memory Limit: 256MB

Petya loves lucky numbers. We all know that lucky numbers are the positive integers whose decimal representations contain only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not.

Petya wonders eagerly what minimum lucky number has the sum of digits equal to n. Help him cope with the task.

Input Format(From the terminal/stdin)

The single line contains an integer n (1 \le n \le 106) - the sum of digits of the required lucky number.

Output Format(To the terminal/stdout)

Print on the single line the result - the minimum lucky number, whose sum of digits equals n. If such number does not exist, print -1.

Sample Input 1

Copy
11
  \n

Sample Output 1

Copy
47
  \n

Sample Input 2

Copy
10
  \n

Sample Output 2

Copy
-1
  \n

Submit

请先 登录

© 2025 FAQs