結果

問題 No.2648 [Cherry 6th Tune D] 一次元の馬
ユーザー 👑 rin204rin204
提出日時 2024-02-23 21:25:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 365 ms / 2,000 ms
コード長 216 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 107,432 KB
最終ジャッジ日時 2024-09-29 05:26:18
合計ジャッジ時間 5,373 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,032 KB
testcase_01 AC 183 ms
77,692 KB
testcase_02 AC 82 ms
75,744 KB
testcase_03 AC 80 ms
75,816 KB
testcase_04 AC 85 ms
98,720 KB
testcase_05 AC 87 ms
104,256 KB
testcase_06 AC 79 ms
92,556 KB
testcase_07 AC 88 ms
103,608 KB
testcase_08 AC 82 ms
90,128 KB
testcase_09 AC 90 ms
107,432 KB
testcase_10 AC 88 ms
104,048 KB
testcase_11 AC 88 ms
94,700 KB
testcase_12 AC 88 ms
96,972 KB
testcase_13 AC 91 ms
104,276 KB
testcase_14 AC 97 ms
102,280 KB
testcase_15 AC 95 ms
101,760 KB
testcase_16 AC 94 ms
102,016 KB
testcase_17 AC 95 ms
102,116 KB
testcase_18 AC 96 ms
101,964 KB
testcase_19 AC 95 ms
101,948 KB
testcase_20 AC 95 ms
102,064 KB
testcase_21 AC 95 ms
102,164 KB
testcase_22 AC 96 ms
101,816 KB
testcase_23 AC 97 ms
102,276 KB
testcase_24 AC 96 ms
101,780 KB
testcase_25 AC 80 ms
88,264 KB
testcase_26 AC 95 ms
102,252 KB
testcase_27 AC 90 ms
95,868 KB
testcase_28 AC 96 ms
102,372 KB
testcase_29 AC 89 ms
103,796 KB
testcase_30 AC 96 ms
101,924 KB
testcase_31 AC 94 ms
102,104 KB
testcase_32 AC 96 ms
102,064 KB
testcase_33 AC 86 ms
107,244 KB
testcase_34 AC 93 ms
101,988 KB
testcase_35 AC 365 ms
77,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    n = int(input())
    A = list(map(int, input().split()))
    ans = 0
    for i in range(n - 1):
        ans = max(ans, A[i] - A[i + 1] + 1)
    print(ans)


for _ in range(int(input())):
    solve()
0