結果

問題 No.406 鴨等間隔の法則
ユーザー fal_rndfal_rnd
提出日時 2016-10-28 23:34:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 730 ms / 2,000 ms
コード長 416 bytes
コンパイル時間 2,217 ms
コンパイル使用メモリ 74,892 KB
実行使用メモリ 49,744 KB
最終ジャッジ日時 2024-07-07 11:54:02
合計ジャッジ時間 19,634 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 494 ms
48,240 KB
testcase_01 AC 132 ms
40,980 KB
testcase_02 AC 132 ms
41,148 KB
testcase_03 AC 134 ms
41,360 KB
testcase_04 AC 680 ms
48,384 KB
testcase_05 AC 483 ms
48,280 KB
testcase_06 AC 467 ms
47,980 KB
testcase_07 AC 480 ms
48,160 KB
testcase_08 AC 654 ms
48,348 KB
testcase_09 AC 695 ms
48,500 KB
testcase_10 AC 517 ms
48,084 KB
testcase_11 AC 680 ms
48,380 KB
testcase_12 AC 551 ms
48,560 KB
testcase_13 AC 552 ms
48,288 KB
testcase_14 AC 683 ms
48,552 KB
testcase_15 AC 240 ms
45,720 KB
testcase_16 AC 260 ms
46,384 KB
testcase_17 AC 226 ms
44,364 KB
testcase_18 AC 257 ms
45,696 KB
testcase_19 AC 280 ms
46,968 KB
testcase_20 AC 308 ms
48,344 KB
testcase_21 AC 320 ms
47,420 KB
testcase_22 AC 383 ms
47,580 KB
testcase_23 AC 560 ms
48,384 KB
testcase_24 AC 582 ms
48,140 KB
testcase_25 AC 730 ms
48,672 KB
testcase_26 AC 643 ms
49,744 KB
testcase_27 AC 580 ms
47,916 KB
testcase_28 AC 578 ms
48,168 KB
testcase_29 AC 639 ms
48,792 KB
testcase_30 AC 628 ms
48,504 KB
testcase_31 AC 683 ms
48,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class A{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args) {
		int in[] = new int[s.nextInt()];
		for(int i=0;i<in.length;i++) {
			in[i]=s.nextInt();
		}
		Arrays.sort(in);
		int f = in[1]-in[0];
		for(int i=2;i<in.length;i++) {
			if((f != in[i]-in[i-1])||(in[i]==in[i-1])) {
				System.out.println("NO");
				return;
			}
		}
		System.out.println("YES");
	}
}
0