結果
問題 | No.2648 [Cherry 6th Tune D] 一次元の馬 |
ユーザー | zmsyzmsy |
提出日時 | 2024-04-04 22:10:03 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 257 bytes |
コンパイル時間 | 1,618 ms |
コンパイル使用メモリ | 167,556 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-01 00:36:58 |
合計ジャッジ時間 | 6,229 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 73 ms
5,248 KB |
testcase_15 | AC | 74 ms
5,248 KB |
testcase_16 | AC | 73 ms
5,248 KB |
testcase_17 | AC | 74 ms
5,248 KB |
testcase_18 | AC | 77 ms
5,248 KB |
testcase_19 | AC | 74 ms
5,248 KB |
testcase_20 | AC | 73 ms
5,248 KB |
testcase_21 | AC | 77 ms
5,248 KB |
testcase_22 | AC | 72 ms
5,248 KB |
testcase_23 | AC | 72 ms
5,248 KB |
testcase_24 | AC | 74 ms
5,248 KB |
testcase_25 | AC | 74 ms
5,248 KB |
testcase_26 | AC | 76 ms
5,248 KB |
testcase_27 | WA | - |
testcase_28 | AC | 75 ms
5,248 KB |
testcase_29 | AC | 74 ms
5,248 KB |
testcase_30 | AC | 75 ms
5,248 KB |
testcase_31 | AC | 74 ms
5,248 KB |
testcase_32 | AC | 73 ms
5,248 KB |
testcase_33 | AC | 74 ms
5,248 KB |
testcase_34 | AC | 80 ms
5,248 KB |
testcase_35 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; int A[200010],ans; int main(){ int t,n; cin>>t; while(t--){ cin>>n; for(int i=1;i<=n;i++){ cin>>A[i]; } for(int i=1;i<n;i++){ ans=max(ans,A[i]-A[i+1]+1); } cout<<ans<<endl; } }