結果

問題 No.2451 Redistribute Integers
ユーザー Challestend RehtorbegnaroChallestend Rehtorbegnaro
提出日時 2023-09-01 21:28:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 395 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 32,256 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-11 10:59:08
合計ジャッジ時間 2,021 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 54 ms
5,376 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 22 ms
5,376 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 30 ms
5,376 KB
testcase_17 AC 47 ms
5,376 KB
testcase_18 WA -
testcase_19 AC 6 ms
5,376 KB
testcase_20 AC 51 ms
5,376 KB
testcase_21 AC 66 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#define maxn 500000

int n;
int a[maxn + 5];

int main()
{
	scanf("%d", &n);
	for (int i = 1; i <= n; ++i)
		scanf("%d", &a[i]);
	bool ans = true;
	if (n == 2)
		ans = (a[1] - a[2]) % 2 == 0;
	else
	{
		for (int i = 1; i <= n; ++i)
			if ((a[i + 1] - a[i]) % (n - 2) != 0)
				ans = false;
	}
	if (ans)
		puts("Yes");
	else
		puts("No");
	return 0;
}
0