結果

問題 No.406 鴨等間隔の法則
ユーザー samplelpmassamplelpmas
提出日時 2017-01-26 11:15:53
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 700 bytes
コンパイル時間 4,276 ms
コンパイル使用メモリ 74,588 KB
実行使用メモリ 58,108 KB
最終ジャッジ日時 2024-11-07 07:00:41
合計ジャッジ時間 21,178 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 480 ms
48,340 KB
testcase_01 WA -
testcase_02 AC 131 ms
41,268 KB
testcase_03 AC 134 ms
41,360 KB
testcase_04 AC 674 ms
58,108 KB
testcase_05 AC 458 ms
48,124 KB
testcase_06 AC 489 ms
48,492 KB
testcase_07 AC 474 ms
48,076 KB
testcase_08 AC 658 ms
48,384 KB
testcase_09 AC 700 ms
48,744 KB
testcase_10 AC 481 ms
48,384 KB
testcase_11 AC 595 ms
48,336 KB
testcase_12 AC 470 ms
48,784 KB
testcase_13 AC 500 ms
48,296 KB
testcase_14 WA -
testcase_15 AC 228 ms
45,664 KB
testcase_16 AC 250 ms
46,072 KB
testcase_17 AC 220 ms
44,904 KB
testcase_18 AC 260 ms
46,400 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 308 ms
48,228 KB
testcase_22 WA -
testcase_23 AC 536 ms
48,140 KB
testcase_24 WA -
testcase_25 AC 647 ms
48,868 KB
testcase_26 WA -
testcase_27 AC 563 ms
47,976 KB
testcase_28 AC 563 ms
48,256 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 681 ms
49,064 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 - 1; i++) {

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

        }

        System.out.println("YES");

    }

}
0