結果

問題 No.406 鴨等間隔の法則
ユーザー Hiroaki KonoHiroaki Kono
提出日時 2017-10-29 16:34:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 806 ms / 2,000 ms
コード長 777 bytes
コンパイル時間 3,473 ms
コンパイル使用メモリ 76,052 KB
実行使用メモリ 58,524 KB
最終ジャッジ日時 2024-07-07 12:15:35
合計ジャッジ時間 21,023 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 549 ms
49,120 KB
testcase_01 AC 122 ms
41,304 KB
testcase_02 AC 107 ms
40,200 KB
testcase_03 AC 110 ms
40,024 KB
testcase_04 AC 772 ms
50,460 KB
testcase_05 AC 483 ms
48,972 KB
testcase_06 AC 455 ms
48,940 KB
testcase_07 AC 471 ms
49,060 KB
testcase_08 AC 666 ms
53,820 KB
testcase_09 AC 806 ms
55,840 KB
testcase_10 AC 515 ms
49,196 KB
testcase_11 AC 707 ms
50,064 KB
testcase_12 AC 563 ms
49,856 KB
testcase_13 AC 572 ms
49,364 KB
testcase_14 AC 677 ms
50,236 KB
testcase_15 AC 226 ms
46,076 KB
testcase_16 AC 249 ms
47,252 KB
testcase_17 AC 216 ms
45,032 KB
testcase_18 AC 244 ms
46,496 KB
testcase_19 AC 268 ms
48,072 KB
testcase_20 AC 315 ms
47,120 KB
testcase_21 AC 314 ms
47,812 KB
testcase_22 AC 370 ms
48,360 KB
testcase_23 AC 548 ms
49,608 KB
testcase_24 AC 590 ms
50,160 KB
testcase_25 AC 767 ms
54,800 KB
testcase_26 AC 654 ms
57,632 KB
testcase_27 AC 550 ms
50,480 KB
testcase_28 AC 487 ms
52,468 KB
testcase_29 AC 745 ms
55,624 KB
testcase_30 AC 693 ms
58,524 KB
testcase_31 AC 760 ms
54,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No406 {

    public static void main(String[] args) {
        Scanner s = new Scanner(System.in);
        int count = s.nextInt();
        Integer[] arr = new Integer[count];
        String out = "YES";
        for (int i = 0; i < count; i++) {
            arr[i] = s.nextInt();
        }
        Arrays.sort(arr, Comparator.reverseOrder());
        int diff = arr[1] - arr[0];
        if (diff == 0) {
            out = "NO";
        } else {
            for (int i = 1; i < count; i++) {
                if (arr[i] - arr[i - 1] != diff) {
                    out = "NO";
                    break;
                }
            }
        }
        System.out.println(out);
    }
}
0