結果
問題 | No.2648 [Cherry 6th Tune D] 一次元の馬 |
ユーザー | umezo |
提出日時 | 2024-02-23 23:02:12 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 34 ms / 2,000 ms |
コード長 | 430 bytes |
コンパイル時間 | 2,488 ms |
コンパイル使用メモリ | 246,408 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-09-29 08:19:06 |
合計ジャッジ時間 | 5,191 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 36 |
ソースコード
#define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; #include<bits/stdc++.h> using namespace std; int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); int t; cin>>t; while(t--){ int n; cin>>n; vector<ll> A(n); rep(i,n) cin>>A[i]; ll ma=-1e18; rep(i,n-1) ma=max(ma,A[i]-A[i+1]); cout<<max(0LL,ma+1)<<'\n'; } return 0; }