結果

問題 No.406 鴨等間隔の法則
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-13 18:05:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 686 ms / 2,000 ms
コード長 485 bytes
コンパイル時間 3,075 ms
コンパイル使用メモリ 74,956 KB
実行使用メモリ 61,056 KB
最終ジャッジ日時 2024-07-07 12:34:45
合計ジャッジ時間 19,325 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 478 ms
59,784 KB
testcase_01 AC 118 ms
52,924 KB
testcase_02 AC 129 ms
54,084 KB
testcase_03 AC 132 ms
54,368 KB
testcase_04 AC 672 ms
59,500 KB
testcase_05 AC 451 ms
59,368 KB
testcase_06 AC 497 ms
59,656 KB
testcase_07 AC 481 ms
59,516 KB
testcase_08 AC 660 ms
59,856 KB
testcase_09 AC 685 ms
59,680 KB
testcase_10 AC 516 ms
59,400 KB
testcase_11 AC 588 ms
59,428 KB
testcase_12 AC 512 ms
59,696 KB
testcase_13 AC 501 ms
59,760 KB
testcase_14 AC 596 ms
59,656 KB
testcase_15 AC 233 ms
57,984 KB
testcase_16 AC 247 ms
57,848 KB
testcase_17 AC 208 ms
56,900 KB
testcase_18 AC 258 ms
58,108 KB
testcase_19 AC 264 ms
58,788 KB
testcase_20 AC 287 ms
59,112 KB
testcase_21 AC 303 ms
59,128 KB
testcase_22 AC 357 ms
59,016 KB
testcase_23 AC 522 ms
59,656 KB
testcase_24 AC 551 ms
59,232 KB
testcase_25 AC 676 ms
59,692 KB
testcase_26 AC 608 ms
61,056 KB
testcase_27 AC 565 ms
59,448 KB
testcase_28 AC 595 ms
59,240 KB
testcase_29 AC 608 ms
59,288 KB
testcase_30 AC 568 ms
59,740 KB
testcase_31 AC 686 ms
59,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		int n = sc.nextInt();
		int[] ar = new int[n];
		for (int i=0; i<n; i++) ar[i] = sc.nextInt();
		Arrays.sort(ar);
		
		boolean F = true;
		int dif = ar[1]-ar[0];
		for (int i=1; i<n; i++) {
			if (ar[i]-ar[i-1] != dif) {
				F = false; break;
			}
			else if (ar[i]-ar[i-1] == 0) {
				F = false; break;
			}
		}
		
		System.out.println(F?"YES":"NO");
		
	}
}
0