結果

問題 No.2648 [Cherry 6th Tune D] 一次元の馬
ユーザー utauta
提出日時 2024-02-24 10:32:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 316 ms / 2,000 ms
コード長 202 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 107,200 KB
最終ジャッジ日時 2024-09-29 10:00:37
合計ジャッジ時間 5,599 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,956 KB
testcase_01 AC 129 ms
76,696 KB
testcase_02 AC 78 ms
76,200 KB
testcase_03 AC 79 ms
76,416 KB
testcase_04 AC 82 ms
98,768 KB
testcase_05 AC 84 ms
104,316 KB
testcase_06 AC 74 ms
91,756 KB
testcase_07 AC 81 ms
103,936 KB
testcase_08 AC 74 ms
91,364 KB
testcase_09 AC 83 ms
106,948 KB
testcase_10 AC 83 ms
104,420 KB
testcase_11 AC 80 ms
95,680 KB
testcase_12 AC 83 ms
97,148 KB
testcase_13 AC 83 ms
104,220 KB
testcase_14 AC 89 ms
101,840 KB
testcase_15 AC 87 ms
102,160 KB
testcase_16 AC 88 ms
101,980 KB
testcase_17 AC 86 ms
101,820 KB
testcase_18 AC 86 ms
101,920 KB
testcase_19 AC 86 ms
101,704 KB
testcase_20 AC 87 ms
101,680 KB
testcase_21 AC 87 ms
101,876 KB
testcase_22 AC 86 ms
102,044 KB
testcase_23 AC 85 ms
101,556 KB
testcase_24 AC 87 ms
101,624 KB
testcase_25 AC 73 ms
88,104 KB
testcase_26 AC 89 ms
101,700 KB
testcase_27 AC 81 ms
95,148 KB
testcase_28 AC 86 ms
102,224 KB
testcase_29 AC 83 ms
103,912 KB
testcase_30 AC 88 ms
101,912 KB
testcase_31 AC 85 ms
102,064 KB
testcase_32 AC 87 ms
101,680 KB
testcase_33 AC 80 ms
107,200 KB
testcase_34 AC 91 ms
102,304 KB
testcase_35 AC 316 ms
77,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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