# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
702403 | chenyan | Pismo (COCI18_pismo) | C++17 | 12 ms | 1940 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std;
#define int long long
#define pii pair<int,int>
#define ff first
#define ss second
#define all(x) x.begin(),x.end()
#define pb emplace_back
#define N 200010
int a[N],ans=1e18;
signed main(){
ios::sync_with_stdio(0);
cin.tie(0);
int n,i;
cin>>n;
for(i=0;i<n;i++){
cin>>a[i];
if(i)ans=min(ans,abs(a[i]-a[i-1]));
}
cout<<ans<<'\n';
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |