結果

問題 No.2648 [Cherry 6th Tune D] 一次元の馬
ユーザー lloyzlloyz
提出日時 2024-03-07 22:39:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 367 ms / 2,000 ms
コード長 189 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 107,728 KB
最終ジャッジ日時 2024-09-29 18:42:37
合計ジャッジ時間 5,262 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,732 KB
testcase_01 AC 142 ms
76,740 KB
testcase_02 AC 78 ms
76,928 KB
testcase_03 AC 76 ms
76,444 KB
testcase_04 AC 78 ms
99,112 KB
testcase_05 AC 84 ms
104,476 KB
testcase_06 AC 74 ms
91,648 KB
testcase_07 AC 81 ms
103,984 KB
testcase_08 AC 75 ms
90,960 KB
testcase_09 AC 82 ms
107,728 KB
testcase_10 AC 81 ms
104,732 KB
testcase_11 AC 79 ms
95,748 KB
testcase_12 AC 82 ms
96,928 KB
testcase_13 AC 83 ms
104,800 KB
testcase_14 AC 86 ms
101,948 KB
testcase_15 AC 84 ms
101,920 KB
testcase_16 AC 87 ms
101,968 KB
testcase_17 AC 87 ms
101,908 KB
testcase_18 AC 86 ms
102,080 KB
testcase_19 AC 86 ms
101,864 KB
testcase_20 AC 86 ms
102,204 KB
testcase_21 AC 84 ms
101,864 KB
testcase_22 AC 87 ms
102,056 KB
testcase_23 AC 89 ms
102,100 KB
testcase_24 AC 88 ms
101,876 KB
testcase_25 AC 73 ms
88,360 KB
testcase_26 AC 86 ms
101,860 KB
testcase_27 AC 81 ms
95,048 KB
testcase_28 AC 86 ms
102,236 KB
testcase_29 AC 83 ms
104,296 KB
testcase_30 AC 88 ms
102,092 KB
testcase_31 AC 88 ms
102,168 KB
testcase_32 AC 86 ms
102,396 KB
testcase_33 AC 79 ms
107,352 KB
testcase_34 AC 89 ms
102,080 KB
testcase_35 AC 367 ms
77,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    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)
0