結果

問題 No.406 鴨等間隔の法則
ユーザー crazybbb3crazybbb3
提出日時 2016-12-05 22:13:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 237 ms / 2,000 ms
コード長 1,978 bytes
コンパイル時間 1,992 ms
コンパイル使用メモリ 77,980 KB
実行使用メモリ 57,312 KB
最終ジャッジ日時 2024-07-07 12:01:33
合計ジャッジ時間 8,143 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 170 ms
55,672 KB
testcase_01 AC 49 ms
50,456 KB
testcase_02 AC 48 ms
50,492 KB
testcase_03 AC 49 ms
50,288 KB
testcase_04 AC 208 ms
57,096 KB
testcase_05 AC 157 ms
55,412 KB
testcase_06 AC 156 ms
55,272 KB
testcase_07 AC 166 ms
55,112 KB
testcase_08 AC 206 ms
56,680 KB
testcase_09 AC 222 ms
57,312 KB
testcase_10 AC 175 ms
55,516 KB
testcase_11 AC 177 ms
56,672 KB
testcase_12 AC 191 ms
56,264 KB
testcase_13 AC 190 ms
56,308 KB
testcase_14 AC 213 ms
56,556 KB
testcase_15 AC 92 ms
52,112 KB
testcase_16 AC 101 ms
52,300 KB
testcase_17 AC 93 ms
51,940 KB
testcase_18 AC 98 ms
52,228 KB
testcase_19 AC 105 ms
52,684 KB
testcase_20 AC 119 ms
52,940 KB
testcase_21 AC 117 ms
52,660 KB
testcase_22 AC 144 ms
56,468 KB
testcase_23 AC 179 ms
56,452 KB
testcase_24 AC 200 ms
56,476 KB
testcase_25 AC 221 ms
56,824 KB
testcase_26 AC 218 ms
56,732 KB
testcase_27 AC 177 ms
56,432 KB
testcase_28 AC 181 ms
55,936 KB
testcase_29 AC 237 ms
56,784 KB
testcase_30 AC 217 ms
56,452 KB
testcase_31 AC 233 ms
56,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.StringTokenizer;

public class Main {

    static BufferedReader in;
    static PrintWriter out;
    static StringTokenizer tok;

    void solve() throws IOException {
        int n = ni();
        int[] x = nia(n);
        Arrays.sort(x);
        int d = x[1] - x[0];
        if (d == 0) {
            out.println("NO");
            return;
        }
        for (int i = 1; i < n - 1; i++) {
            if (x[i + 1] - x[i] != d) {
                out.println("NO");
                return;
            }
        }
        out.println("YES");
    }

    String ns() throws IOException {
        while (!tok.hasMoreTokens()) {
            tok = new StringTokenizer(in.readLine(), " ");
        }
        return tok.nextToken();
    }

    int ni() throws IOException {
        return Integer.parseInt(ns());
    }

    long nl() throws IOException {
        return Long.parseLong(ns());
    }

    double nd() throws IOException {
        return Double.parseDouble(ns());
    }

    String[] nsa(int n) throws IOException {
        String[] res = new String[n];
        for (int i = 0; i < n; i++) {
            res[i] = ns();
        }
        return res;
    }

    int[] nia(int n) throws IOException {
        int[] res = new int[n];
        for (int i = 0; i < n; i++) {
            res[i] = ni();
        }
        return res;
    }

    long[] nla(int n) throws IOException {
        long[] res = new long[n];
        for (int i = 0; i < n; i++) {
            res[i] = nl();
        }
        return res;
    }

    public static void main(String[] args) throws IOException {
        in = new BufferedReader(new InputStreamReader(System.in));
        out = new PrintWriter(System.out);
        tok = new StringTokenizer("");
        Main main = new Main();
        main.solve();
        out.close();
    }
}
0