結果

問題 No.406 鴨等間隔の法則
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-10 02:35:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 588 ms / 2,000 ms
コード長 730 bytes
コンパイル時間 1,821 ms
コンパイル使用メモリ 75,348 KB
実行使用メモリ 50,828 KB
最終ジャッジ日時 2024-07-07 11:54:34
合計ジャッジ時間 15,943 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 434 ms
48,620 KB
testcase_01 AC 97 ms
41,588 KB
testcase_02 AC 110 ms
41,588 KB
testcase_03 AC 118 ms
41,640 KB
testcase_04 AC 566 ms
48,872 KB
testcase_05 AC 411 ms
48,504 KB
testcase_06 AC 406 ms
48,644 KB
testcase_07 AC 396 ms
48,552 KB
testcase_08 AC 588 ms
48,524 KB
testcase_09 AC 501 ms
49,164 KB
testcase_10 AC 427 ms
48,424 KB
testcase_11 AC 562 ms
48,968 KB
testcase_12 AC 488 ms
48,660 KB
testcase_13 AC 471 ms
48,656 KB
testcase_14 AC 576 ms
48,900 KB
testcase_15 AC 206 ms
45,820 KB
testcase_16 AC 218 ms
47,032 KB
testcase_17 AC 186 ms
44,596 KB
testcase_18 AC 217 ms
46,152 KB
testcase_19 AC 241 ms
47,392 KB
testcase_20 AC 261 ms
48,260 KB
testcase_21 AC 264 ms
48,364 KB
testcase_22 AC 315 ms
47,896 KB
testcase_23 AC 480 ms
48,548 KB
testcase_24 AC 473 ms
48,540 KB
testcase_25 AC 571 ms
48,792 KB
testcase_26 AC 531 ms
50,168 KB
testcase_27 AC 487 ms
48,468 KB
testcase_28 AC 466 ms
48,280 KB
testcase_29 AC 553 ms
50,540 KB
testcase_30 AC 536 ms
50,828 KB
testcase_31 AC 537 ms
48,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int [] x = new int [N];
        for(int i=0; i<N; i++){
            x[i] = sc.nextInt();
        }
        Arrays.sort(x);
        int a = x[1]-x[0];
        int flag = 0;
        for(int i=1; i<N; i++){
            if(x[i]-x[i-1]!=a){
                System.out.println("NO");
                flag=1;
                break;
            }
            if(x[i]-x[i-1]==0){
                System.out.println("NO");
                flag=1;
                break;
            }
        }
        if(flag==0){
            System.out.println("YES");
        }
    }
}
0