Two Bags of Potatoes

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;  ≤ 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.
Input
10 1 10
Output
-1
Input
10 6 40
Output
2 8 14 20 26
思路:很简单(x+y)<=n;(x+y)%k0。
错误代码:
#include
#include
#include
#include
#include
#include
int main()
{
int y,k,n;
while(~scanf("%d %d %d",&y,&k,&n))
{
int t=0;
for(int x=1;x<=(n-y);x++)
{
if((x+y)%k
0)
{
t=1;
printf("%d “,x);
}
}
if(t==0)printf(”%d",-1);
printf("\n");
}
return 0;
}
会时间超限。所以要换。把x+y当做整体。

在这里插入图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值