結果

問題 No.135 とりあえず1次元の問題
ユーザー Zu_rinZu_rin
提出日時 2019-04-05 15:34:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 20 ms / 5,000 ms
コード長 433 bytes
コンパイル時間 571 ms
コンパイル使用メモリ 75,092 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-11 17:30:08
合計ジャッジ時間 1,864 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 1 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 15 ms
6,940 KB
testcase_22 AC 19 ms
6,940 KB
evil01.txt AC 17 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#define INF 1 << 20

using namespace std;

int main(void) {
	int num, i = 0, ans = INF, buf;
	cin >> num;
	vector<int>data(num);
	for (; i < num; i++)
		scanf("%d", &data[i]);
	sort(data.begin(), data.end());
	i = num - 1;
	while (i > 0) {
		buf = data[i--] - data[i];
		if (buf != 0)
			ans = min(ans, buf);
	}
	if (ans == INF)
		ans = 0;
	cout << ans << "\n";
	return 0;
}
0