제출 #870810

#제출 시각아이디문제언어결과실행 시간메모리
870810vjudge1Pismo (COCI18_pismo)C++17
70 / 70
8 ms1628 KiB
//author: Ahmet Alp Orakci
#include <bits/stdc++.h>
using namespace std;
using i64 = long long;

#define ONLINE_JUDGE
void solve() {
    int n;
    cin >> n;

    int arr[n];
    for(int &i : arr)   
        cin >> i;

    int ans = int(1E9);
    for(int i = 0; i < n -1; i++) {
        ans = min(ans, abs(arr[i] - arr[i +1]));
    }

    cout << ans;
    
    return;
}

signed main() {
    #ifndef ONLINE_JUDGE
        freopen(".in", "r", stdin);
        freopen(".out", "w", stdout);
    #endif

    ios_base::sync_with_stdio(false);
    cin.tie(NULL); cout.tie(NULL);

    int t = 1; //cin >> t;
    for(int i = 1; i <= t; i++) {
        solve();
    }

    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...