結果

問題 No.406 鴨等間隔の法則
ユーザー samplelpmassamplelpmas
提出日時 2017-01-26 11:26:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 642 ms / 2,000 ms
コード長 696 bytes
コンパイル時間 1,994 ms
コンパイル使用メモリ 75,044 KB
実行使用メモリ 61,952 KB
最終ジャッジ日時 2024-07-07 12:08:25
合計ジャッジ時間 17,509 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 493 ms
59,652 KB
testcase_01 AC 123 ms
54,168 KB
testcase_02 AC 124 ms
54,396 KB
testcase_03 AC 124 ms
54,056 KB
testcase_04 AC 633 ms
59,792 KB
testcase_05 AC 433 ms
59,580 KB
testcase_06 AC 438 ms
59,344 KB
testcase_07 AC 467 ms
59,648 KB
testcase_08 AC 606 ms
59,352 KB
testcase_09 AC 539 ms
59,248 KB
testcase_10 AC 445 ms
59,312 KB
testcase_11 AC 584 ms
59,756 KB
testcase_12 AC 523 ms
59,636 KB
testcase_13 AC 524 ms
59,572 KB
testcase_14 AC 620 ms
59,784 KB
testcase_15 AC 225 ms
57,684 KB
testcase_16 AC 249 ms
58,380 KB
testcase_17 AC 208 ms
56,716 KB
testcase_18 AC 250 ms
57,676 KB
testcase_19 AC 246 ms
58,928 KB
testcase_20 AC 287 ms
58,300 KB
testcase_21 AC 293 ms
59,052 KB
testcase_22 AC 350 ms
59,140 KB
testcase_23 AC 501 ms
59,704 KB
testcase_24 AC 532 ms
59,232 KB
testcase_25 AC 642 ms
59,460 KB
testcase_26 AC 585 ms
59,680 KB
testcase_27 AC 551 ms
59,272 KB
testcase_28 AC 538 ms
59,004 KB
testcase_29 AC 523 ms
61,380 KB
testcase_30 AC 582 ms
61,952 KB
testcase_31 AC 609 ms
59,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int ducks = sc.nextInt();

        int[] x = new int[ducks];

        for (int i = 0; i < ducks; i++) {
            x[i] = sc.nextInt();
        }

        Arrays.sort(x);

        int diff = x[1] - x[0];

        if (diff == 0) {
            System.out.println("NO");
            return;
        }

        for (int i = 1; i < ducks; i++) {

            if (x[i] - x[i - 1] != diff) {
                System.out.println("NO");
                return;
            }

        }

        System.out.println("YES");

    }

}
0