Codeforces-239A-Two Bags of Potatoes

来源:互联网 发布:发型软件 编辑:程序博客网 时间:2024/04/29 02:44

Valera had two bags of potatoes, the first of these bags contains x (x ≥ 1) potatoes, and the second — y (y ≥ 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

The first line of input contains three integers y, k, n (1 ≤ y, k, n ≤ 109; n/k ≤ 105).
Output

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.
Examples
Input

10 1 10

Output

-1

Input

10 6 40

Output

2 8 14 20 26

题意:给你y,告诉你上限,求x
题解: x+y≤n,(x+y)%k==0

#include <iostream>#include <cstdio>#include <cmath>#include <cstring>#include <algorithm>using namespace std;int main() {    int y,n,k;    scanf("%d %d %d",&y,&k,&n);    for(int i=(y/k+1)*k;i<=n;i+=k)    {        printf("%d ",i-y);    }    if((y/k+1)*k>n)    {        printf("-1");    }    return 0;}
0 0