• [1354] Prime Numbers Game

  • 时间限制: 1000 ms 内存限制: 65535 K
  • 问题描述
  • Hungar loves playing with numbers. He only knows prime numbers that are digits yet. These numbers are 2, 3, 5 and 7. But Hungar grew rather bored of such numbers, so he came up with a few games that were connected with them.

    Hungar wants to find the minimum number of length n, such that it is simultaneously divisible by all numbers Willy already knows (2, 3, 5 and 7). 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 n (1 <= n <= 100000).
  • 输出
  • 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
    4
    5
    
  • 样例输出
  • -1
    1050
    10080
    
  • 提示
  • 来源
  • Hungar
  • 操作

显示春菜