結果

問題 No.1285 ゴミ捨て
ユーザー tentententen
提出日時 2020-11-16 12:26:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 661 ms / 2,000 ms
コード長 509 bytes
コンパイル時間 2,391 ms
コンパイル使用メモリ 74,492 KB
実行使用メモリ 59,808 KB
最終ジャッジ日時 2024-11-28 21:54:38
合計ジャッジ時間 11,756 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
54,160 KB
testcase_01 AC 109 ms
53,060 KB
testcase_02 AC 114 ms
53,132 KB
testcase_03 AC 125 ms
54,140 KB
testcase_04 AC 116 ms
54,164 KB
testcase_05 AC 128 ms
54,344 KB
testcase_06 AC 121 ms
52,984 KB
testcase_07 AC 661 ms
59,700 KB
testcase_08 AC 190 ms
56,916 KB
testcase_09 AC 468 ms
59,432 KB
testcase_10 AC 567 ms
59,552 KB
testcase_11 AC 534 ms
59,576 KB
testcase_12 AC 504 ms
59,480 KB
testcase_13 AC 503 ms
59,532 KB
testcase_14 AC 594 ms
59,808 KB
testcase_15 AC 520 ms
59,520 KB
testcase_16 AC 329 ms
59,564 KB
testcase_17 AC 327 ms
59,140 KB
testcase_18 AC 316 ms
59,112 KB
testcase_19 AC 415 ms
59,728 KB
testcase_20 AC 306 ms
59,136 KB
testcase_21 AC 351 ms
59,656 KB
testcase_22 AC 597 ms
59,692 KB
testcase_23 AC 625 ms
59,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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