結果

問題 No.2648 [Cherry 6th Tune D] 一次元の馬
ユーザー ntudantuda
提出日時 2024-02-23 23:42:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 346 ms / 2,000 ms
コード長 255 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 81,632 KB
実行使用メモリ 107,232 KB
最終ジャッジ日時 2024-09-29 09:09:51
合計ジャッジ時間 5,840 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,868 KB
testcase_01 AC 138 ms
75,988 KB
testcase_02 AC 87 ms
76,556 KB
testcase_03 AC 87 ms
76,804 KB
testcase_04 AC 88 ms
98,776 KB
testcase_05 AC 91 ms
104,184 KB
testcase_06 AC 82 ms
91,156 KB
testcase_07 AC 89 ms
103,860 KB
testcase_08 AC 81 ms
90,944 KB
testcase_09 AC 90 ms
107,232 KB
testcase_10 AC 89 ms
104,192 KB
testcase_11 AC 86 ms
96,960 KB
testcase_12 AC 92 ms
96,580 KB
testcase_13 AC 89 ms
104,160 KB
testcase_14 AC 94 ms
102,020 KB
testcase_15 AC 94 ms
102,212 KB
testcase_16 AC 94 ms
102,188 KB
testcase_17 AC 96 ms
102,132 KB
testcase_18 AC 94 ms
101,612 KB
testcase_19 AC 94 ms
102,076 KB
testcase_20 AC 94 ms
101,916 KB
testcase_21 AC 96 ms
101,968 KB
testcase_22 AC 95 ms
101,604 KB
testcase_23 AC 94 ms
101,912 KB
testcase_24 AC 91 ms
101,620 KB
testcase_25 AC 77 ms
88,784 KB
testcase_26 AC 94 ms
102,220 KB
testcase_27 AC 84 ms
94,936 KB
testcase_28 AC 92 ms
102,020 KB
testcase_29 AC 88 ms
103,980 KB
testcase_30 AC 93 ms
102,236 KB
testcase_31 AC 94 ms
102,136 KB
testcase_32 AC 92 ms
101,956 KB
testcase_33 AC 86 ms
107,164 KB
testcase_34 AC 93 ms
102,288 KB
testcase_35 AC 346 ms
77,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    N = int(input())
    A = list(map(int, input().split()))
    ans = 0
    for i in range(N - 1):
        if A[i] < A[i + 1]:
            continue
        else:
            ans = max(ans, A[i] - A[i + 1] + 1)
    print(ans)
0