結果

問題 No.406 鴨等間隔の法則
ユーザー Hiroaki KonoHiroaki Kono
提出日時 2017-10-29 17:34:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 466 ms / 2,000 ms
コード長 743 bytes
コンパイル時間 4,009 ms
コンパイル使用メモリ 78,948 KB
実行使用メモリ 67,380 KB
最終ジャッジ日時 2024-07-07 12:15:52
合計ジャッジ時間 14,861 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 297 ms
57,996 KB
testcase_01 AC 119 ms
54,220 KB
testcase_02 AC 122 ms
54,472 KB
testcase_03 AC 105 ms
53,096 KB
testcase_04 AC 437 ms
64,812 KB
testcase_05 AC 305 ms
57,964 KB
testcase_06 AC 314 ms
58,068 KB
testcase_07 AC 317 ms
57,840 KB
testcase_08 AC 399 ms
64,684 KB
testcase_09 AC 466 ms
67,168 KB
testcase_10 AC 311 ms
58,660 KB
testcase_11 AC 415 ms
64,628 KB
testcase_12 AC 332 ms
62,468 KB
testcase_13 AC 333 ms
60,308 KB
testcase_14 AC 394 ms
64,828 KB
testcase_15 AC 178 ms
55,004 KB
testcase_16 AC 194 ms
54,592 KB
testcase_17 AC 169 ms
54,456 KB
testcase_18 AC 204 ms
56,940 KB
testcase_19 AC 212 ms
57,144 KB
testcase_20 AC 225 ms
57,176 KB
testcase_21 AC 218 ms
57,312 KB
testcase_22 AC 245 ms
59,740 KB
testcase_23 AC 314 ms
62,020 KB
testcase_24 AC 375 ms
64,848 KB
testcase_25 AC 466 ms
66,972 KB
testcase_26 AC 409 ms
66,948 KB
testcase_27 AC 376 ms
66,540 KB
testcase_28 AC 372 ms
66,484 KB
testcase_29 AC 455 ms
67,020 KB
testcase_30 AC 460 ms
67,380 KB
testcase_31 AC 413 ms
64,880 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();
        s.nextLine();
        int[] arr = Arrays.stream(s.nextLine().trim().split(" "))
            .mapToInt(Integer::parseInt)
            .toArray();
        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