結果

問題 No.2335 Jump
ユーザー ks2mks2m
提出日時 2023-06-02 21:44:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 266 ms / 2,000 ms
コード長 612 bytes
コンパイル時間 3,120 ms
コンパイル使用メモリ 75,432 KB
実行使用メモリ 56,796 KB
最終ジャッジ日時 2024-06-08 22:38:40
合計ジャッジ時間 6,764 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,892 KB
testcase_01 AC 54 ms
36,796 KB
testcase_02 AC 53 ms
37,184 KB
testcase_03 AC 55 ms
37,152 KB
testcase_04 AC 54 ms
37,056 KB
testcase_05 AC 53 ms
37,140 KB
testcase_06 AC 52 ms
36,768 KB
testcase_07 AC 56 ms
37,112 KB
testcase_08 AC 56 ms
36,704 KB
testcase_09 AC 59 ms
37,184 KB
testcase_10 AC 57 ms
37,252 KB
testcase_11 AC 56 ms
37,032 KB
testcase_12 AC 227 ms
49,588 KB
testcase_13 AC 217 ms
49,472 KB
testcase_14 AC 228 ms
49,452 KB
testcase_15 AC 224 ms
49,856 KB
testcase_16 AC 223 ms
49,376 KB
testcase_17 AC 266 ms
56,424 KB
testcase_18 AC 215 ms
49,448 KB
testcase_19 AC 226 ms
49,164 KB
testcase_20 AC 265 ms
56,796 KB
testcase_21 AC 228 ms
48,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.HashSet;
import java.util.Set;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		sa = br.readLine().split(" ");
		int[] a = new int[n];
		Set<Integer> set = new HashSet<>();
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(sa[i]);
			if (a[i] <= n) {
				set.add(a[i]);
			}
		}
		br.close();

		System.out.println(a[n - 1] - n);
	}
}
0