跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F1867. Wavy numbers

    ID: 1873 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 10 上传者: 标签>枚举搜索折半搜索排序算法思想编程与模拟挑战难度共享题库Codeforces英文题面题目来源题面语言

Wavy numbers

题目描述

E. Wavy numbers
time limit per test
1.5 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

A wavy number is such positive integer that for any digit of its decimal representation except for the first one and the last one following condition holds: the digit is either strictly larger than both its adjacent digits or strictly less than both its adjacent digits. For example, numbers 35270, 102, 747, 20 and 3 are wavy and numbers 123, 1000 and 2212 are not.

The task is to find the k-th smallest wavy number r that is divisible by n for the given integer values n and k.

You are to write a program that will find the value of r if it doesn't exceed 1014.

Input

The only line of input contains two integers n and k, separated by a single space (1≤n,k≤1014).

Output

Your task is to output the only integer r − the answer to the given problem. If such number does not exist or it is larger than 1014, then print "-1" (minus one without the quotes) instead.

Examples
Input
123 4
Output
1845
Input
100 1
Output
-1
Input
97461 457
Output
1805270103
Note

The values of the first four wavy numbers that are divisible by n for the first sample are: 492, 615, 738 and 1845.


题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 1442 题。保留原作者与原赛事署名。