結果

問題 No.406 鴨等間隔の法則
ユーザー TakaTaka
提出日時 2016-09-07 12:42:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 662 ms / 2,000 ms
コード長 548 bytes
コンパイル時間 3,661 ms
コンパイル使用メモリ 75,328 KB
実行使用メモリ 60,620 KB
最終ジャッジ日時 2024-07-07 11:43:36
合計ジャッジ時間 18,755 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 486 ms
59,512 KB
testcase_01 AC 124 ms
54,132 KB
testcase_02 AC 127 ms
54,260 KB
testcase_03 AC 124 ms
54,112 KB
testcase_04 AC 624 ms
59,768 KB
testcase_05 AC 432 ms
59,588 KB
testcase_06 AC 454 ms
59,612 KB
testcase_07 AC 450 ms
59,584 KB
testcase_08 AC 644 ms
59,892 KB
testcase_09 AC 662 ms
59,776 KB
testcase_10 AC 460 ms
59,464 KB
testcase_11 AC 579 ms
59,580 KB
testcase_12 AC 529 ms
59,596 KB
testcase_13 AC 492 ms
59,760 KB
testcase_14 AC 638 ms
59,652 KB
testcase_15 AC 232 ms
57,756 KB
testcase_16 AC 243 ms
58,572 KB
testcase_17 AC 208 ms
56,900 KB
testcase_18 AC 238 ms
58,032 KB
testcase_19 AC 251 ms
58,744 KB
testcase_20 AC 290 ms
59,112 KB
testcase_21 AC 293 ms
58,864 KB
testcase_22 AC 327 ms
57,944 KB
testcase_23 AC 557 ms
60,232 KB
testcase_24 AC 528 ms
59,568 KB
testcase_25 AC 659 ms
59,648 KB
testcase_26 AC 589 ms
59,492 KB
testcase_27 AC 525 ms
59,208 KB
testcase_28 AC 547 ms
59,428 KB
testcase_29 AC 583 ms
60,620 KB
testcase_30 AC 576 ms
59,864 KB
testcase_31 AC 639 ms
59,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;

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