結果

問題 No.406 鴨等間隔の法則
ユーザー denderaKawazudenderaKawazu
提出日時 2018-03-21 20:12:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 3,219 bytes
コンパイル時間 1,945 ms
コンパイル使用メモリ 74,448 KB
実行使用メモリ 53,712 KB
最終ジャッジ日時 2023-09-21 18:46:33
合計ジャッジ時間 6,466 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
53,448 KB
testcase_01 AC 42 ms
49,468 KB
testcase_02 AC 42 ms
49,340 KB
testcase_03 AC 42 ms
49,472 KB
testcase_04 AC 127 ms
53,712 KB
testcase_05 AC 96 ms
52,480 KB
testcase_06 AC 98 ms
53,180 KB
testcase_07 AC 101 ms
53,348 KB
testcase_08 AC 129 ms
53,528 KB
testcase_09 AC 135 ms
53,612 KB
testcase_10 AC 101 ms
52,900 KB
testcase_11 AC 121 ms
52,988 KB
testcase_12 AC 109 ms
53,012 KB
testcase_13 AC 104 ms
52,656 KB
testcase_14 AC 125 ms
53,216 KB
testcase_15 AC 50 ms
49,480 KB
testcase_16 AC 59 ms
51,544 KB
testcase_17 AC 48 ms
49,540 KB
testcase_18 AC 68 ms
51,580 KB
testcase_19 AC 73 ms
53,100 KB
testcase_20 AC 68 ms
52,684 KB
testcase_21 AC 78 ms
52,684 KB
testcase_22 AC 88 ms
52,836 KB
testcase_23 AC 110 ms
53,304 KB
testcase_24 AC 125 ms
53,712 KB
testcase_25 AC 132 ms
53,096 KB
testcase_26 AC 138 ms
53,652 KB
testcase_27 AC 92 ms
52,280 KB
testcase_28 AC 93 ms
52,492 KB
testcase_29 AC 139 ms
53,616 KB
testcase_30 AC 134 ms
53,160 KB
testcase_31 AC 129 ms
53,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.OutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Arrays;
import java.io.IOException;
import java.util.NoSuchElementException;
import java.io.InputStream;

/**
 * Built using CHelper plug-in
 * Actual solution is at the top
 */
public class Main {
    public static void main(String[] args) {
        InputStream inputStream = System.in;
        OutputStream outputStream = System.out;
        FastScanner in = new FastScanner(inputStream);
        PrintWriter out = new PrintWriter(outputStream);
        Task solver = new Task();
        solver.solve(1, in, out);
        out.close();
    }

    static class Task {
        public void solve(int testNumber, FastScanner in, PrintWriter out) {
            final int n = in.nextInt();

            int[] x = new int[n];
            for (int i = 0; i < n; i++) x[i] = in.nextInt();

            Arrays.sort(x);

            int dx = x[1] - x[0];
            if (dx == 0) {
                out.println("NO");
                return;
            }

            for (int i = 1; i < n; i++) {
                if (x[i] - x[i - 1] != dx) {
                    out.println("NO");
                    return;
                }
            }
            out.println("YES");
        }

    }

    static class FastScanner {
        private InputStream in;
        private byte[] buffer;
        private int p;
        private int bufLen;

        public FastScanner(InputStream in) {
            this.in = in;
            buffer = new byte[1024];
        }

        private boolean hasNextByte() {
            if (p < bufLen) return true;
            p = 0;
            try {
                bufLen = in.read(buffer);
            } catch (IOException e) {
                e.printStackTrace();
            }
            return (bufLen > 0);
        }

        private int readByte() {
            if (hasNextByte()) return buffer[p++];
            return -1;
        }

        private static boolean isPrintableChar(int c) {
            return (c >= 33 && c <= 126);
        }

        public boolean hasNext() {
            while (hasNextByte() && !isPrintableChar(buffer[p])) p++;
            return hasNextByte();
        }

        public int nextInt() {
            long nl = nextLong();
            if (nl < Integer.MIN_VALUE || nl > Integer.MAX_VALUE) throw new NumberFormatException();
            return (int) nl;
        }

        public long nextLong() {
            if (!hasNext()) throw new NoSuchElementException();
            long n = 0;
            boolean minus = false;
            int b = readByte();
            if (b == '-') {
                minus = true;
                b = readByte();
            }
            if (b < '0' || b > '9') throw new NumberFormatException();

            while (true) {
                if (b >= '0' && b <= '9') {
                    n *= 10;
                    n += b - '0';
                } else if (b == -1 || !isPrintableChar(b)) {
                    return minus ? -n : n;
                } else {
                    throw new NumberFormatException();
                }
                b = readByte();
            }
        }

    }
}

0