結果

問題 No.406 鴨等間隔の法則
ユーザー Hiroaki KonoHiroaki Kono
提出日時 2017-10-29 17:36:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 647 ms / 2,000 ms
コード長 713 bytes
コンパイル時間 3,118 ms
コンパイル使用メモリ 75,136 KB
実行使用メモリ 52,244 KB
最終ジャッジ日時 2024-07-07 12:16:29
合計ジャッジ時間 18,692 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 457 ms
48,400 KB
testcase_01 AC 119 ms
41,192 KB
testcase_02 AC 124 ms
41,628 KB
testcase_03 AC 121 ms
41,380 KB
testcase_04 AC 637 ms
48,684 KB
testcase_05 AC 443 ms
48,516 KB
testcase_06 AC 442 ms
48,240 KB
testcase_07 AC 378 ms
47,140 KB
testcase_08 AC 572 ms
48,860 KB
testcase_09 AC 552 ms
49,212 KB
testcase_10 AC 480 ms
48,540 KB
testcase_11 AC 615 ms
48,692 KB
testcase_12 AC 504 ms
48,544 KB
testcase_13 AC 511 ms
48,464 KB
testcase_14 AC 633 ms
48,936 KB
testcase_15 AC 211 ms
46,024 KB
testcase_16 AC 248 ms
46,860 KB
testcase_17 AC 209 ms
44,984 KB
testcase_18 AC 222 ms
46,032 KB
testcase_19 AC 251 ms
46,892 KB
testcase_20 AC 287 ms
48,724 KB
testcase_21 AC 282 ms
48,624 KB
testcase_22 AC 310 ms
48,168 KB
testcase_23 AC 502 ms
48,536 KB
testcase_24 AC 526 ms
48,468 KB
testcase_25 AC 647 ms
48,876 KB
testcase_26 AC 533 ms
52,244 KB
testcase_27 AC 548 ms
48,424 KB
testcase_28 AC 533 ms
48,328 KB
testcase_29 AC 587 ms
50,368 KB
testcase_30 AC 569 ms
48,872 KB
testcase_31 AC 614 ms
48,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No406 {

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