結果

問題 No.406 鴨等間隔の法則
ユーザー yagi2yagi2
提出日時 2017-04-17 10:50:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 675 ms / 2,000 ms
コード長 865 bytes
コンパイル時間 2,089 ms
コンパイル使用メモリ 78,280 KB
実行使用メモリ 69,680 KB
最終ジャッジ日時 2024-07-07 12:05:25
合計ジャッジ時間 17,581 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 407 ms
59,900 KB
testcase_01 AC 102 ms
53,088 KB
testcase_02 AC 112 ms
53,856 KB
testcase_03 AC 96 ms
52,452 KB
testcase_04 AC 562 ms
64,456 KB
testcase_05 AC 380 ms
62,048 KB
testcase_06 AC 393 ms
59,936 KB
testcase_07 AC 396 ms
59,676 KB
testcase_08 AC 653 ms
64,316 KB
testcase_09 AC 638 ms
68,612 KB
testcase_10 AC 396 ms
59,896 KB
testcase_11 AC 564 ms
64,032 KB
testcase_12 AC 455 ms
60,028 KB
testcase_13 AC 453 ms
60,184 KB
testcase_14 AC 613 ms
62,196 KB
testcase_15 AC 184 ms
56,544 KB
testcase_16 AC 224 ms
57,484 KB
testcase_17 AC 187 ms
56,392 KB
testcase_18 AC 210 ms
58,456 KB
testcase_19 AC 231 ms
59,352 KB
testcase_20 AC 251 ms
59,308 KB
testcase_21 AC 276 ms
59,184 KB
testcase_22 AC 319 ms
59,216 KB
testcase_23 AC 467 ms
62,064 KB
testcase_24 AC 578 ms
62,020 KB
testcase_25 AC 675 ms
66,312 KB
testcase_26 AC 583 ms
69,680 KB
testcase_27 AC 506 ms
61,676 KB
testcase_28 AC 520 ms
64,124 KB
testcase_29 AC 666 ms
68,328 KB
testcase_30 AC 666 ms
66,612 KB
testcase_31 AC 641 ms
62,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int N = Integer.parseInt(sc.next());
        List<Long> kamos = new ArrayList<>();

        for (int i = 0; i < N; i++) {
            kamos.add(Long.parseLong(sc.next()));
        }

        Collections.sort(kamos);

        List<Long> S = new ArrayList<>();
        for (int i = 0; i < N - 1; i++) {
            S.add(kamos.get(i+1) - kamos.get(i));
        }

        if (S.contains(new Long("0"))) {
            System.out.println("NO");
        } else {
            Set<Long> set = new HashSet<>(S);
            List<Long> d = new ArrayList<>(set);

            if (d.size() == 1) {
                System.out.println("YES");
            } else {
                System.out.println("NO");
            }
        }
    }
}
0