結果

問題 No.406 鴨等間隔の法則
ユーザー matsuyoshi30matsuyoshi30
提出日時 2016-08-14 11:11:02
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 837 bytes
コンパイル時間 3,149 ms
コンパイル使用メモリ 75,872 KB
実行使用メモリ 51,976 KB
最終ジャッジ日時 2024-11-07 05:17:56
合計ジャッジ時間 19,886 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 493 ms
48,236 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 AC 138 ms
41,480 KB
testcase_04 AC 693 ms
48,736 KB
testcase_05 AC 485 ms
48,456 KB
testcase_06 AC 508 ms
48,272 KB
testcase_07 AC 437 ms
46,920 KB
testcase_08 AC 659 ms
48,412 KB
testcase_09 AC 717 ms
48,744 KB
testcase_10 AC 488 ms
48,304 KB
testcase_11 AC 631 ms
48,640 KB
testcase_12 AC 557 ms
48,164 KB
testcase_13 AC 555 ms
48,056 KB
testcase_14 RE -
testcase_15 AC 241 ms
46,072 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 531 ms
48,260 KB
testcase_24 RE -
testcase_25 AC 705 ms
48,844 KB
testcase_26 RE -
testcase_27 AC 542 ms
48,548 KB
testcase_28 AC 601 ms
48,260 KB
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 664 ms
48,604 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();
        int[] x = new int[n];

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

        Arrays.sort(x);

        int diff = x[1] - x[0];
        boolean bool = true;

        for(int i=1; i<n; i++) {
            if(x[i+1] == x[i]) {
                bool = false;
                break;
            }
            int temp = x[i+1] - x[i];
            if(temp == diff) continue;
        }

        if(bool == true) {
            System.out.println("YES");
        } else if(bool == false) {
            System.out.println("NO");
        }

        in.close();
    }
}
0