結果

問題 No.406 鴨等間隔の法則
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-05-03 14:35:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 291 ms / 2,000 ms
コード長 1,003 bytes
コンパイル時間 3,824 ms
コンパイル使用メモリ 81,324 KB
実行使用メモリ 61,720 KB
最終ジャッジ日時 2024-07-07 12:02:35
合計ジャッジ時間 9,931 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 205 ms
58,716 KB
testcase_01 AC 59 ms
51,060 KB
testcase_02 AC 57 ms
50,836 KB
testcase_03 AC 59 ms
50,796 KB
testcase_04 AC 236 ms
61,316 KB
testcase_05 AC 165 ms
57,256 KB
testcase_06 AC 184 ms
58,528 KB
testcase_07 AC 186 ms
59,536 KB
testcase_08 AC 254 ms
61,476 KB
testcase_09 AC 291 ms
61,720 KB
testcase_10 AC 192 ms
58,656 KB
testcase_11 AC 230 ms
61,016 KB
testcase_12 AC 212 ms
58,668 KB
testcase_13 AC 196 ms
58,796 KB
testcase_14 AC 248 ms
61,036 KB
testcase_15 AC 106 ms
52,428 KB
testcase_16 AC 112 ms
53,196 KB
testcase_17 AC 83 ms
51,964 KB
testcase_18 AC 94 ms
52,536 KB
testcase_19 AC 100 ms
53,056 KB
testcase_20 AC 133 ms
53,524 KB
testcase_21 AC 131 ms
53,172 KB
testcase_22 AC 158 ms
56,820 KB
testcase_23 AC 198 ms
58,788 KB
testcase_24 AC 239 ms
61,312 KB
testcase_25 AC 285 ms
61,524 KB
testcase_26 AC 259 ms
61,244 KB
testcase_27 AC 212 ms
61,180 KB
testcase_28 AC 220 ms
61,076 KB
testcase_29 AC 260 ms
61,464 KB
testcase_30 AC 280 ms
61,532 KB
testcase_31 AC 280 ms
61,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.stream.Stream;

import static java.lang.System.in;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        int N = Integer.parseInt(reader.readLine());
        String[] inputs = reader.readLine().split(" ");
        int[] positions = Stream.of(inputs).mapToInt(Integer::parseInt).toArray();

        Arrays.sort(positions);
        int max = Integer.MIN_VALUE;
        int min = Integer.MAX_VALUE;
        for (int i = 1; i < N; i++) {
            int differences = positions[i] - positions[i - 1];
            max = Math.max(max, differences);
            min = Math.min(min, differences);
        }

        if (max == min && min != 0) {
            System.out.println("YES");
        } else {
            System.out.println("NO");
        }
    }
}
0