結果

問題 No.1268 Fruit Rush 2
ユーザー ks2mks2m
提出日時 2020-10-24 00:01:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 785 ms / 2,000 ms
コード長 815 bytes
コンパイル時間 2,864 ms
コンパイル使用メモリ 79,096 KB
実行使用メモリ 75,352 KB
最終ジャッジ日時 2024-07-21 14:02:17
合計ジャッジ時間 16,692 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
36,940 KB
testcase_01 AC 54 ms
36,612 KB
testcase_02 AC 54 ms
36,620 KB
testcase_03 AC 54 ms
36,748 KB
testcase_04 AC 54 ms
36,904 KB
testcase_05 AC 54 ms
37,140 KB
testcase_06 AC 53 ms
37,248 KB
testcase_07 AC 53 ms
36,892 KB
testcase_08 AC 57 ms
36,940 KB
testcase_09 AC 54 ms
37,068 KB
testcase_10 AC 55 ms
36,936 KB
testcase_11 AC 55 ms
36,752 KB
testcase_12 AC 53 ms
36,620 KB
testcase_13 AC 55 ms
37,116 KB
testcase_14 AC 54 ms
36,620 KB
testcase_15 AC 55 ms
36,980 KB
testcase_16 AC 432 ms
55,404 KB
testcase_17 AC 394 ms
54,496 KB
testcase_18 AC 410 ms
55,536 KB
testcase_19 AC 402 ms
54,796 KB
testcase_20 AC 399 ms
55,008 KB
testcase_21 AC 389 ms
54,796 KB
testcase_22 AC 437 ms
56,916 KB
testcase_23 AC 451 ms
55,324 KB
testcase_24 AC 386 ms
55,428 KB
testcase_25 AC 387 ms
54,584 KB
testcase_26 AC 751 ms
75,280 KB
testcase_27 AC 730 ms
75,312 KB
testcase_28 AC 744 ms
75,120 KB
testcase_29 AC 753 ms
75,200 KB
testcase_30 AC 785 ms
75,352 KB
testcase_31 AC 580 ms
66,400 KB
testcase_32 AC 630 ms
67,092 KB
testcase_33 AC 473 ms
72,044 KB
testcase_34 AC 468 ms
64,100 KB
testcase_35 AC 482 ms
72,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;

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

		Arrays.sort(a);
		Map<Long, Long> map = new HashMap<>();
		for (int i = 1; i < n; i++) {
			long val = 0;
			if (a[i] - 1 == a[i - 1]) {
				val++;
			}
			val += map.getOrDefault(a[i] - 1, 0L);
			map.put(a[i] + 1, val);
		}

		long ans = n;
		for (long v : map.values()) {
			ans += v;
		}
		System.out.println(ans);
	}
}
0