結果

問題 No.135 とりあえず1次元の問題
ユーザー koyumeishikoyumeishi
提出日時 2015-01-30 16:39:45
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 525 bytes
コンパイル時間 935 ms
コンパイル使用メモリ 86,996 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2025-01-03 03:23:00
合計ジャッジ時間 2,213 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cstdio>
#include <sstream>
#include <map>
#include <string>
#include <algorithm>
#include <queue>
#include <cmath>
#include <set>
using namespace std;

int main(){
	int n;
	cin >> n;
	vector<int> v(n);
	for(int i=0; i<n; i++) cin >> v[i];
	sort(v.begin(), v.end());
	v.erase( unique(v.begin(), v.end()), v.end());
	int ans = 1<<29;
	if(v.size() < 2) ans = 0;
	else{
		for(int i=1; i<v.size(); i++){
			ans = min(ans, v[i] - v[i-1]);
		}
	}

	cout << ans << endl;
	
	return 0;
}
0