3822.Two Bags of Potatoes

Time Limit: 1s Memory Limit: 256MB

Valera had two bags of potatoes, the first of these bags contains x (x \ge 1) potatoes, and the second - y (y \ge 1) potatoes. Valera - very scattered boy, so the first bag of potatoes (it contains x potatoes) Valera lost. Valera remembers that the total amount of potatoes (x+y) in the two bags, firstly, was not gerater than n, and, secondly, was divisible by k.

Help Valera to determine how many potatoes could be in the first bag. Print all such possible numbers in ascending order.

Input Format(From the terminal/stdin)

The first line of input contains three integers y, k, n (1 \le y,k,n \le 109; 3822_1.png \le 105).

Output Format(To the terminal/stdout)

Print the list of whitespace-separated integers - all possible values of x in ascending order. You should print each possible value of x exactly once.

If there are no such values of x print a single integer -1.

Sample Input 1

Copy
10 1 10
  · ·  \n

Sample Output 1

Copy
-1
  \n

Sample Input 2

Copy
10 6 40
  · ·  \n

Sample Output 2

Copy
2 8 14 20 26 
 · ·  ·  ·  \n

Submit

请先 登录

© 2025 FAQs