結果

問題 No.406 鴨等間隔の法則
ユーザー matsuyoshi30matsuyoshi30
提出日時 2016-08-14 11:15:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 700 ms / 2,000 ms
コード長 759 bytes
コンパイル時間 3,244 ms
コンパイル使用メモリ 76,192 KB
実行使用メモリ 60,724 KB
最終ジャッジ日時 2024-07-07 11:37:52
合計ジャッジ時間 17,618 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 480 ms
59,352 KB
testcase_01 AC 119 ms
54,012 KB
testcase_02 AC 113 ms
53,816 KB
testcase_03 AC 124 ms
54,208 KB
testcase_04 AC 661 ms
59,832 KB
testcase_05 AC 450 ms
59,752 KB
testcase_06 AC 467 ms
60,044 KB
testcase_07 AC 464 ms
59,656 KB
testcase_08 AC 622 ms
59,708 KB
testcase_09 AC 700 ms
59,792 KB
testcase_10 AC 468 ms
59,560 KB
testcase_11 AC 586 ms
59,636 KB
testcase_12 AC 537 ms
59,400 KB
testcase_13 AC 508 ms
59,644 KB
testcase_14 AC 606 ms
59,612 KB
testcase_15 AC 219 ms
57,848 KB
testcase_16 AC 236 ms
58,524 KB
testcase_17 AC 206 ms
56,832 KB
testcase_18 AC 238 ms
57,664 KB
testcase_19 AC 259 ms
59,244 KB
testcase_20 AC 257 ms
58,088 KB
testcase_21 AC 286 ms
59,048 KB
testcase_22 AC 348 ms
59,288 KB
testcase_23 AC 510 ms
59,744 KB
testcase_24 AC 527 ms
59,344 KB
testcase_25 AC 640 ms
59,804 KB
testcase_26 AC 580 ms
59,252 KB
testcase_27 AC 548 ms
59,308 KB
testcase_28 AC 517 ms
59,136 KB
testcase_29 AC 583 ms
60,724 KB
testcase_30 AC 568 ms
59,560 KB
testcase_31 AC 611 ms
59,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        long[] x = new long[n];
        for(int i=0; i<n; i++) {
            x[i] = in.nextLong();
        }
        Arrays.sort(x);
        final long diff = x[1] - x[0];
        if(diff == 0) {
            System.out.println("NO");
        } else {
            for(int i=2; i<n; i++) {
                if(diff != x[i] - x[i-1]) {
                    System.out.println("NO");
                    return;
                }
            }
            System.out.println("YES");
        }

        in.close();
    }
}
0