結果

問題 No.135 とりあえず1次元の問題
ユーザー SeiyaTSeiyaT
提出日時 2021-09-10 10:21:48
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 87 ms / 5,000 ms
コード長 418 bytes
コンパイル時間 1,671 ms
コンパイル使用メモリ 164,388 KB
実行使用メモリ 8,064 KB
最終ジャッジ日時 2025-01-02 17:29:40
合計ジャッジ時間 3,492 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
8,064 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 1 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 1 ms
6,820 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 1 ms
6,816 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 2 ms
6,820 KB
testcase_18 AC 1 ms
6,820 KB
testcase_19 AC 2 ms
6,824 KB
testcase_20 AC 2 ms
6,820 KB
testcase_21 AC 41 ms
6,816 KB
testcase_22 AC 77 ms
7,808 KB
evil01.txt AC 64 ms
8,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using ll=long long;
ll mod=1000000007;
ll INF=1LL<<60;

int main() {
	int N;
	cin >> N;
	set<int> X;
	for(int i=0;i<N;i++){
		int A;
		cin >> A;
		X.insert(A);
	}
	int ans=1000000000;;
	for(auto it=X.begin();it!=prev(X.end());it++){
		int A=(*it);
		int B=*next(it);
		ans=min(ans,B-A);
	}
	if(ans==1000000000){
		cout << 0 << endl;
		return 0;
	}
	cout << ans << endl;
}
0