結果

問題 No.406 鴨等間隔の法則
ユーザー atkrymatkrym
提出日時 2016-10-18 11:56:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 696 ms / 2,000 ms
コード長 690 bytes
コンパイル時間 2,005 ms
コンパイル使用メモリ 76,760 KB
実行使用メモリ 68,952 KB
最終ジャッジ日時 2024-07-07 11:52:18
合計ジャッジ時間 17,701 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 504 ms
59,924 KB
testcase_01 AC 114 ms
53,928 KB
testcase_02 AC 101 ms
52,868 KB
testcase_03 AC 112 ms
53,712 KB
testcase_04 AC 688 ms
62,376 KB
testcase_05 AC 433 ms
59,412 KB
testcase_06 AC 482 ms
59,788 KB
testcase_07 AC 469 ms
59,700 KB
testcase_08 AC 647 ms
61,844 KB
testcase_09 AC 686 ms
62,016 KB
testcase_10 AC 484 ms
59,656 KB
testcase_11 AC 633 ms
61,864 KB
testcase_12 AC 498 ms
59,800 KB
testcase_13 AC 504 ms
59,704 KB
testcase_14 AC 667 ms
62,012 KB
testcase_15 AC 200 ms
57,476 KB
testcase_16 AC 236 ms
58,172 KB
testcase_17 AC 197 ms
56,808 KB
testcase_18 AC 218 ms
58,176 KB
testcase_19 AC 244 ms
57,876 KB
testcase_20 AC 284 ms
59,044 KB
testcase_21 AC 282 ms
57,820 KB
testcase_22 AC 334 ms
58,028 KB
testcase_23 AC 496 ms
59,972 KB
testcase_24 AC 520 ms
61,708 KB
testcase_25 AC 696 ms
61,988 KB
testcase_26 AC 640 ms
66,680 KB
testcase_27 AC 465 ms
61,884 KB
testcase_28 AC 477 ms
61,772 KB
testcase_29 AC 607 ms
66,908 KB
testcase_30 AC 641 ms
68,952 KB
testcase_31 AC 643 ms
62,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        int n = sc.nextInt();
        List<Integer> list = new ArrayList<>();
        for (int i=0;i<n;i++) {
            list.add(sc.nextInt());
        }
        
        Collections.sort(list);
        
        int diff = list.get(1) - list.get(0);
        
        for (int i=1;i<n-1;i++) {
            int tmp = list.get(i+1) - list.get(i);
            if (tmp != diff || tmp == 0) {
                System.out.println("NO");
                return;
            }
        }
        
        System.out.println("YES");
    }
}
0