CF122A.Lucky Division

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Petya loves lucky numbers. Everybody knows that lucky numbers are positive integers whose decimal representation contains only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not.

Petya calls a number almost lucky if it could be evenly divided by some lucky number. Help him find out if the given number nn is almost lucky.

输入格式

The single line contains an integer nn (1<=n<=1000)(1<=n<=1000) — the number that needs to be checked.

输出格式

In the only line print "YES" (without the quotes), if number nn is almost lucky. Otherwise, print "NO" (without the quotes).

输入输出样例

  • 输入#1

    47
    

    输出#1

    YES
    
  • 输入#2

    16
    

    输出#2

    YES
    
  • 输入#3

    78
    

    输出#3

    NO
    

说明/提示

Note that all lucky numbers are almost lucky as any number is evenly divisible by itself.

In the first sample 4747 is a lucky number. In the second sample 1616 is divisible by 44 .

首页