結果

問題 No.406 鴨等間隔の法則
ユーザー tentententen
提出日時 2020-11-11 14:51:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 726 ms / 2,000 ms
コード長 660 bytes
コンパイル時間 2,217 ms
コンパイル使用メモリ 74,808 KB
実行使用メモリ 49,664 KB
最終ジャッジ日時 2024-07-22 18:30:13
合計ジャッジ時間 19,569 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 530 ms
48,576 KB
testcase_01 AC 135 ms
41,368 KB
testcase_02 AC 133 ms
41,420 KB
testcase_03 AC 134 ms
41,416 KB
testcase_04 AC 726 ms
48,520 KB
testcase_05 AC 474 ms
48,260 KB
testcase_06 AC 472 ms
48,564 KB
testcase_07 AC 497 ms
48,376 KB
testcase_08 AC 658 ms
48,696 KB
testcase_09 AC 721 ms
48,964 KB
testcase_10 AC 523 ms
48,368 KB
testcase_11 AC 647 ms
48,668 KB
testcase_12 AC 578 ms
48,424 KB
testcase_13 AC 559 ms
48,308 KB
testcase_14 AC 652 ms
48,460 KB
testcase_15 AC 238 ms
45,904 KB
testcase_16 AC 262 ms
46,624 KB
testcase_17 AC 213 ms
45,020 KB
testcase_18 AC 266 ms
46,028 KB
testcase_19 AC 275 ms
47,540 KB
testcase_20 AC 310 ms
48,500 KB
testcase_21 AC 313 ms
47,644 KB
testcase_22 AC 383 ms
47,944 KB
testcase_23 AC 581 ms
48,400 KB
testcase_24 AC 578 ms
48,344 KB
testcase_25 AC 724 ms
48,584 KB
testcase_26 AC 646 ms
48,728 KB
testcase_27 AC 595 ms
48,132 KB
testcase_28 AC 605 ms
48,548 KB
testcase_29 AC 629 ms
49,664 KB
testcase_30 AC 641 ms
48,680 KB
testcase_31 AC 689 ms
48,916 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);
        int interval = arr[1] - arr[0];
        if (interval == 0) {
            System.out.println("NO");
            return;
        }
        for (int i = 2; i < n; i++) {
            if (arr[i] - arr[i - 1] != interval) {
                System.out.println("NO");
                return;
            }
        }
        System.out.println("YES");
    }
}
0