結果

問題 No.406 鴨等間隔の法則
ユーザー nCk_cvnCk_cv
提出日時 2016-08-27 15:05:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 720 ms / 2,000 ms
コード長 520 bytes
コンパイル時間 4,480 ms
コンパイル使用メモリ 75,104 KB
実行使用メモリ 50,348 KB
最終ジャッジ日時 2024-07-07 11:39:39
合計ジャッジ時間 19,610 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 522 ms
48,076 KB
testcase_01 AC 129 ms
41,208 KB
testcase_02 AC 130 ms
41,264 KB
testcase_03 AC 135 ms
41,100 KB
testcase_04 AC 698 ms
48,576 KB
testcase_05 AC 475 ms
48,060 KB
testcase_06 AC 504 ms
48,244 KB
testcase_07 AC 477 ms
47,996 KB
testcase_08 AC 706 ms
48,652 KB
testcase_09 AC 720 ms
48,508 KB
testcase_10 AC 525 ms
48,176 KB
testcase_11 AC 631 ms
48,420 KB
testcase_12 AC 547 ms
48,372 KB
testcase_13 AC 558 ms
48,392 KB
testcase_14 AC 642 ms
48,420 KB
testcase_15 AC 237 ms
45,560 KB
testcase_16 AC 263 ms
46,688 KB
testcase_17 AC 218 ms
44,364 KB
testcase_18 AC 259 ms
46,196 KB
testcase_19 AC 271 ms
46,812 KB
testcase_20 AC 314 ms
47,632 KB
testcase_21 AC 317 ms
48,084 KB
testcase_22 AC 375 ms
47,772 KB
testcase_23 AC 557 ms
47,972 KB
testcase_24 AC 573 ms
48,220 KB
testcase_25 AC 710 ms
48,528 KB
testcase_26 AC 632 ms
50,320 KB
testcase_27 AC 590 ms
48,680 KB
testcase_28 AC 588 ms
48,836 KB
testcase_29 AC 630 ms
50,348 KB
testcase_30 AC 634 ms
48,676 KB
testcase_31 AC 667 ms
48,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
public class Main {
		public static void main(String[] args) {
			Scanner sc = new Scanner(System.in);
			int N = sc.nextInt();
			int[] l = new int[N];
			for(int i = 0; i < N; i++) {
				l[i] = sc.nextInt();
			}
			Arrays.sort(l);
			int tmp = l[1] - l[0];
			boolean ok = true;
			for(int i = 1; i < N-1; i++) {
				if(tmp != l[i+1] - l[i]) {
					ok = false;
					break;
				}
			}
			if(tmp == 0) ok = false;
			
			System.out.println((ok?"YES":"NO"));
			
		}
}
0