結果

問題 No.135 とりあえず1次元の問題
ユーザー HaarHaar
提出日時 2016-04-15 02:28:09
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 411 bytes
コンパイル時間 516 ms
コンパイル使用メモリ 58,884 KB
実行使用メモリ 7,280 KB
最終ジャッジ日時 2024-06-11 06:46:43
合計ジャッジ時間 1,391 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
6,976 KB
testcase_01 AC 4 ms
7,080 KB
testcase_02 AC 5 ms
7,172 KB
testcase_03 WA -
testcase_04 AC 4 ms
7,168 KB
testcase_05 AC 4 ms
6,944 KB
testcase_06 AC 4 ms
7,104 KB
testcase_07 AC 4 ms
6,972 KB
testcase_08 AC 3 ms
7,032 KB
testcase_09 AC 4 ms
7,056 KB
testcase_10 AC 3 ms
7,276 KB
testcase_11 AC 3 ms
7,004 KB
testcase_12 AC 3 ms
7,172 KB
testcase_13 AC 3 ms
7,244 KB
testcase_14 AC 3 ms
6,992 KB
testcase_15 AC 5 ms
7,112 KB
testcase_16 AC 4 ms
6,992 KB
testcase_17 AC 4 ms
7,128 KB
testcase_18 AC 4 ms
7,280 KB
testcase_19 AC 5 ms
7,040 KB
testcase_20 AC 5 ms
6,944 KB
testcase_21 AC 33 ms
7,224 KB
testcase_22 AC 35 ms
7,072 KB
evil01.txt AC 32 ms
7,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;

int main() {
	int n, x, min, temp;
	vector< int > table(1000001, 0);
	
	cin >> n;
	for(int i=0;i<n;++i){
		cin >> x;
		table[x] = 1;
	}
	
	temp = -1;
	min = -1;
	for(int i=0;i<=1000000;++i){
		if(table[i]){
			if(temp != -1){
				if(min == -1 || min > i - temp){
					min = i - temp;
				}
			}
			temp = i;
		}
	}
	cout << min << endl;
	
	return 0;
}
0