結果

問題 No.2648 [Cherry 6th Tune D] 一次元の馬
ユーザー twooimp2
提出日時 2024-02-23 22:26:38
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 586 bytes
コンパイル時間 23,410 ms
コンパイル使用メモリ 351,316 KB
最終ジャッジ日時 2025-02-19 20:13:14
ジャッジサーバーID
(参考情報)
judge2 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 32 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;

void IO(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
}

int main(){
  IO();
  ll t;
  cin>>t;
  while(t--){
    ll n;
    cin>>n;
    vector<ll> a(n+1);
    for(ll i=1;i<=n;i++){
      cin>>a[i];
    }
    bool ok=true;
    ll lim=-1e18;
    for(ll i=1;i<n;i++){
      ll tmp=a[i]-a[i+1];
      if(tmp>=lim){
        lim=tmp;
      }
    }
    cout<<lim+1<<endl;
  }
}
0