結果

問題 No.406 鴨等間隔の法則
ユーザー HimatsubushinHimatsubushin
提出日時 2024-07-19 12:34:36
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 23 ms / 2,000 ms
コード長 838 bytes
コンパイル時間 1,084 ms
コンパイル使用メモリ 28,416 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-19 12:34:40
合計ジャッジ時間 2,605 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 21 ms
6,944 KB
testcase_05 AC 8 ms
6,940 KB
testcase_06 AC 9 ms
6,940 KB
testcase_07 AC 8 ms
6,944 KB
testcase_08 AC 20 ms
6,944 KB
testcase_09 AC 23 ms
6,940 KB
testcase_10 AC 10 ms
6,944 KB
testcase_11 AC 17 ms
6,940 KB
testcase_12 AC 11 ms
6,940 KB
testcase_13 AC 11 ms
6,940 KB
testcase_14 AC 19 ms
6,944 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 3 ms
6,944 KB
testcase_21 AC 3 ms
6,940 KB
testcase_22 AC 5 ms
6,940 KB
testcase_23 AC 12 ms
6,940 KB
testcase_24 AC 17 ms
6,940 KB
testcase_25 AC 23 ms
6,940 KB
testcase_26 AC 22 ms
6,940 KB
testcase_27 AC 15 ms
6,940 KB
testcase_28 AC 15 ms
6,940 KB
testcase_29 AC 23 ms
6,944 KB
testcase_30 AC 22 ms
6,944 KB
testcase_31 AC 22 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

void quickSort(int*, int, int);

int main(void) {
	int b, i, t, n, a[100000];

	scanf("%d", &n);

	for (i = 0; i < n; i++)
		scanf("%d", &a[i]);

	quickSort(a, 0, n - 1);

	b = 0;
	t = a[1] - a[0];
	for (i = 0; i < n - 1; i++) {
		if (a[i] == a[i + 1] || a[i + 1] - a[i] != t) {
			b = -1;
			break;
		}
	}

	if (b == 0)
		printf("YES\n");
	else
		printf("NO\n");

	return 0;
}

void quickSort(int* data, int left, int right) {
	int l, r, temp, t;

	if (left >= right)
		return;

	temp = data[(left + right) / 2];
	l = left;
	r = right;

	while (-1) {
		while (data[l] < temp)
			l++;
		while (data[r] > temp)
			r--;

		if (l >= r)
			break;

		t = data[l];
		data[l] = data[r];
		data[r] = t;
		l++;
		r--;
	}

	if (left < l - 1)
		quickSort(data, left, l - 1);
	if (right > r + 1)
		quickSort(data, r + 1, right);
}
0