結果

問題 No.2648 [Cherry 6th Tune D] 一次元の馬
ユーザー ks2mks2m
提出日時 2024-02-23 21:28:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 395 ms / 2,000 ms
コード長 717 bytes
コンパイル時間 2,425 ms
コンパイル使用メモリ 75,072 KB
実行使用メモリ 71,976 KB
最終ジャッジ日時 2024-09-29 05:29:34
合計ジャッジ時間 14,538 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,472 KB
testcase_01 AC 273 ms
58,008 KB
testcase_02 AC 297 ms
57,576 KB
testcase_03 AC 292 ms
57,656 KB
testcase_04 AC 287 ms
67,160 KB
testcase_05 AC 311 ms
70,276 KB
testcase_06 AC 273 ms
63,280 KB
testcase_07 AC 297 ms
71,884 KB
testcase_08 AC 282 ms
63,184 KB
testcase_09 AC 301 ms
68,644 KB
testcase_10 AC 316 ms
69,964 KB
testcase_11 AC 296 ms
64,828 KB
testcase_12 AC 297 ms
68,780 KB
testcase_13 AC 333 ms
70,476 KB
testcase_14 AC 300 ms
68,512 KB
testcase_15 AC 289 ms
68,360 KB
testcase_16 AC 283 ms
67,944 KB
testcase_17 AC 293 ms
68,320 KB
testcase_18 AC 331 ms
68,856 KB
testcase_19 AC 300 ms
68,460 KB
testcase_20 AC 289 ms
68,184 KB
testcase_21 AC 301 ms
68,516 KB
testcase_22 AC 285 ms
68,508 KB
testcase_23 AC 272 ms
68,392 KB
testcase_24 AC 281 ms
68,008 KB
testcase_25 AC 281 ms
63,660 KB
testcase_26 AC 277 ms
68,904 KB
testcase_27 AC 297 ms
64,844 KB
testcase_28 AC 278 ms
68,132 KB
testcase_29 AC 301 ms
71,976 KB
testcase_30 AC 292 ms
68,284 KB
testcase_31 AC 288 ms
68,412 KB
testcase_32 AC 285 ms
68,192 KB
testcase_33 AC 280 ms
68,540 KB
testcase_34 AC 290 ms
68,372 KB
testcase_35 AC 395 ms
58,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int t = Integer.parseInt(br.readLine());
		PrintWriter pw = new PrintWriter(System.out);
		for (int z = 0; z < t; z++) {
			int n = Integer.parseInt(br.readLine());
			String[] sa = br.readLine().split(" ");
			int[] a = new int[n];
			for (int i = 0; i < n; i++) {
				a[i] = Integer.parseInt(sa[i]);
			}

			int max = -1;
			for (int i = 1; i < n; i++) {
				max = Math.max(max, a[i - 1] - a[i]);
			}
			pw.println(max + 1);
		}
		pw.flush();
		br.close();
	}
}
0