結果

問題 No.1686 Geschenkt
ユーザー みーすけみーすけ
提出日時 2021-10-03 14:03:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 472 bytes
コンパイル時間 2,637 ms
コンパイル使用メモリ 74,100 KB
実行使用メモリ 41,304 KB
最終ジャッジ日時 2024-07-21 08:03:47
合計ジャッジ時間 3,989 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
41,028 KB
testcase_01 AC 94 ms
39,888 KB
testcase_02 AC 99 ms
40,016 KB
testcase_03 AC 97 ms
40,268 KB
testcase_04 AC 106 ms
40,992 KB
testcase_05 AC 116 ms
41,060 KB
testcase_06 AC 110 ms
41,188 KB
testcase_07 AC 100 ms
39,884 KB
testcase_08 AC 109 ms
40,840 KB
testcase_09 AC 110 ms
41,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] a = new int[n];
        for (int i = 0; i < n; i++) {
            a[i] = sc.nextInt();
        }
        Arrays.sort(a);
        int sum = a[0];
        for (int i = n - 1; i > 0; i--) {
            if (a[i - 1] != a[i] - 1)
                sum += a[i];
        }
        System.out.println(sum);
    }
}
0