結果

問題 No.716 距離
ユーザー Eclair1015
提出日時 2018-09-06 00:54:36
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 573 bytes
コンパイル時間 545 ms
コンパイル使用メモリ 65,860 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-15 21:14:08
合計ジャッジ時間 1,830 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 40
権限があれば一括ダウンロードができます

ソースコード

diff #

//inlclude前用define 
#define _USE_MATH_DEFINES

//include
#include<iostream>
#include<string>
#include<algorithm>
#include<vector>
#include<cmath>

using namespace std;
//typedef
typedef vector<int> VI;
typedef vector<string> VS;
typedef vector<char> VC;

int main() {
	int n;
	cin >> n;
	VI a(n);
	for (int i = 0; i < n; i++) cin >> a[i];

	int max_ans=abs(a[n-1]-a[0]);
	int minv=1000000000,div;
	for (int i = 0; i < n-1; i++) {
		div = a[i + 1] - a[i];
		if (min(div, minv) == div) {
			minv = div;
		}
	}
	cout << minv << endl;
	cout << max_ans << endl;
	return 0;
}
0