首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >专栏 >【CodeForces】675A - Infinite Sequence(易错)

【CodeForces】675A - Infinite Sequence(易错)

作者头像
FishWang
发布2025-08-26 15:46:57
发布2025-08-26 15:46:57
7300
代码可运行
举报
运行总次数:0
代码可运行

题目链接:点击打开题目

A. Infinite Sequence

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

Vasya likes everything infinite. Now he is studying the properties of a sequence s, such that its first element is equal to a (s1 = a), and the difference between any two neighbouring elements is equal to c (si - si - 1 = c). In particular, Vasya wonders if his favourite integer bappears in this sequence, that is, there exists a positive integer i, such that si = b. Of course, you are the person he asks for a help.

Input

The first line of the input contain three integers a, b and c ( - 109 ≤ a, b, c ≤ 109) — the first element of the sequence, Vasya's favorite number and the difference between any two neighbouring elements of the sequence, respectively.

Output

If b appears in the sequence s print "YES" (without quotes), otherwise print "NO" (without quotes).

Examples

input

代码语言:javascript
代码运行次数:0
运行
复制
1 7 3

output

代码语言:javascript
代码运行次数:0
运行
复制
YES

input

代码语言:javascript
代码运行次数:0
运行
复制
10 10 0

output

代码语言:javascript
代码运行次数:0
运行
复制
YES

input

代码语言:javascript
代码运行次数:0
运行
复制
1 -4 5

output

代码语言:javascript
代码运行次数:0
运行
复制
NO

input

代码语言:javascript
代码运行次数:0
运行
复制
0 60 50

output

代码语言:javascript
代码运行次数:0
运行
复制
NO

Note

In the first sample, the sequence starts from integers 1, 4, 7, so 7 is its element.

In the second sample, the favorite integer of Vasya is equal to the first element of the sequence.

In the third sample all elements of the sequence are greater than Vasya's favorite integer.

In the fourth sample, the sequence starts from 0, 50, 100, and all the following elements are greater than Vasya's favorite integer.

题意:给出首项a,给出公差c,问b是否在这个等差数列里。

题解:

题目思维太缜密了,一点纰漏就要WA。

首先要判断a是否等于b,这里步漏掉就导致后面取余的时候出错。

然后对c = 0 特殊处理,要不会RE的。

然后再取余就行了。

代码如下:

代码语言:javascript
代码运行次数:0
运行
复制
#include <cstdio>
int main()
{
	int a,b,c;
	while (~scanf ("%d %d %d",&a,&b,&c))
	{
		if (a == b)
		{
			printf ("YES\n");
			continue;
		}
		if (c == 0)
		{
			if (a == b)
				printf ("YES\n");
			else
				printf ("NO\n");
		}
		else
		{
			int t1 = (b - a) % c;
			int t2 = (b - a) / c;
			if (t1 == 0 && t2 > 0)
				printf ("YES\n");
			else
				printf ("NO\n");
		}
	}
	return 0;
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2025-08-26,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档