結果

問題 No.406 鴨等間隔の法則
ユーザー fjafjafjafjafjafja
提出日時 2017-09-16 23:48:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 653 ms / 2,000 ms
コード長 495 bytes
コンパイル時間 3,663 ms
コンパイル使用メモリ 74,704 KB
実行使用メモリ 51,840 KB
最終ジャッジ日時 2024-07-07 12:12:37
合計ジャッジ時間 18,906 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 492 ms
48,076 KB
testcase_01 AC 123 ms
41,272 KB
testcase_02 AC 118 ms
40,168 KB
testcase_03 AC 123 ms
41,132 KB
testcase_04 AC 628 ms
48,636 KB
testcase_05 AC 411 ms
46,900 KB
testcase_06 AC 469 ms
48,048 KB
testcase_07 AC 420 ms
46,632 KB
testcase_08 AC 632 ms
48,716 KB
testcase_09 AC 644 ms
48,352 KB
testcase_10 AC 467 ms
48,056 KB
testcase_11 AC 617 ms
48,344 KB
testcase_12 AC 466 ms
48,180 KB
testcase_13 AC 487 ms
48,208 KB
testcase_14 AC 616 ms
48,380 KB
testcase_15 AC 232 ms
45,860 KB
testcase_16 AC 240 ms
46,444 KB
testcase_17 AC 197 ms
44,760 KB
testcase_18 AC 225 ms
45,752 KB
testcase_19 AC 261 ms
47,344 KB
testcase_20 AC 270 ms
47,812 KB
testcase_21 AC 300 ms
47,580 KB
testcase_22 AC 347 ms
47,740 KB
testcase_23 AC 492 ms
48,236 KB
testcase_24 AC 523 ms
47,944 KB
testcase_25 AC 634 ms
48,532 KB
testcase_26 AC 581 ms
51,840 KB
testcase_27 AC 531 ms
48,280 KB
testcase_28 AC 498 ms
48,208 KB
testcase_29 AC 533 ms
49,968 KB
testcase_30 AC 589 ms
48,424 KB
testcase_31 AC 653 ms
48,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class N406 {

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

}
0