結果

問題 No.406 鴨等間隔の法則
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-10 21:54:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 649 ms / 2,000 ms
コード長 509 bytes
コンパイル時間 1,975 ms
コンパイル使用メモリ 74,856 KB
実行使用メモリ 48,980 KB
最終ジャッジ日時 2024-07-07 12:20:22
合計ジャッジ時間 17,208 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 462 ms
48,296 KB
testcase_01 AC 121 ms
41,284 KB
testcase_02 AC 120 ms
41,452 KB
testcase_03 AC 122 ms
40,316 KB
testcase_04 AC 645 ms
48,772 KB
testcase_05 AC 458 ms
48,464 KB
testcase_06 AC 426 ms
48,392 KB
testcase_07 AC 384 ms
46,940 KB
testcase_08 AC 596 ms
48,980 KB
testcase_09 AC 649 ms
48,528 KB
testcase_10 AC 457 ms
48,300 KB
testcase_11 AC 561 ms
48,752 KB
testcase_12 AC 430 ms
47,224 KB
testcase_13 AC 481 ms
48,628 KB
testcase_14 AC 574 ms
48,664 KB
testcase_15 AC 223 ms
45,836 KB
testcase_16 AC 238 ms
46,136 KB
testcase_17 AC 205 ms
44,684 KB
testcase_18 AC 236 ms
46,088 KB
testcase_19 AC 262 ms
46,740 KB
testcase_20 AC 284 ms
48,236 KB
testcase_21 AC 288 ms
48,188 KB
testcase_22 AC 341 ms
47,848 KB
testcase_23 AC 545 ms
48,520 KB
testcase_24 AC 531 ms
48,268 KB
testcase_25 AC 601 ms
48,580 KB
testcase_26 AC 569 ms
48,396 KB
testcase_27 AC 482 ms
48,512 KB
testcase_28 AC 558 ms
48,552 KB
testcase_29 AC 580 ms
48,680 KB
testcase_30 AC 537 ms
48,940 KB
testcase_31 AC 615 ms
48,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public 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 isSatisfy = true;
		int dif = ar[1] - ar[0];
		for (int i=0; i<n-1; i++) {
			if (dif != ar[i+1]-ar[i]) {isSatisfy = false; break;}
			else if (ar[i+1]==ar[i]) {isSatisfy = false; break;}
		}
		System.out.println(isSatisfy==true?"YES":"NO");
	}
}
0