結果
問題 | No.2648 [Cherry 6th Tune D] 一次元の馬 |
ユーザー | GOTKAKO |
提出日時 | 2024-02-23 21:23:44 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 156 ms / 2,000 ms |
コード長 | 394 bytes |
コンパイル時間 | 1,903 ms |
コンパイル使用メモリ | 202,184 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-09-29 05:21:49 |
合計ジャッジ時間 | 4,617 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 36 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); int T; cin >> T; while(T--){ int N; cin >> N; vector<long long> A(N); for(auto &a : A) cin >> a; long long answer = 0; for(int i=0; i<N-1; i++) answer = max(answer,A.at(i)-A.at(i+1)+1); cout << answer << endl; } }