CF248B.Chilly Willy

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Chilly Willy loves playing with numbers. He only knows prime numbers that are digits yet. These numbers are 22 , 33 , 55 and 77 . But Willy grew rather bored of such numbers, so he came up with a few games that were connected with them.

Chilly Willy wants to find the minimum number of length nn , such that it is simultaneously divisible by all numbers Willy already knows ( 22 , 33 , 55 and 77 ). Help him with that.

A number's length is the number of digits in its decimal representation without leading zeros.

输入格式

A single input line contains a single integer nn ( 1<=n<=1051<=n<=10^{5} ).

输出格式

Print a single integer — the answer to the problem without leading zeroes, or "-1" (without the quotes), if the number that meet the problem condition does not exist.

输入输出样例

  • 输入#1

    1
    

    输出#1

    -1
    
  • 输入#2

    5
    

    输出#2

    10080
首页