結果

問題 No.406 鴨等間隔の法則
ユーザー shinwisteriashinwisteria
提出日時 2017-03-30 23:57:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 614 ms / 2,000 ms
コード長 531 bytes
コンパイル時間 2,936 ms
コンパイル使用メモリ 75,280 KB
実行使用メモリ 59,756 KB
最終ジャッジ日時 2024-07-07 12:01:20
合計ジャッジ時間 17,264 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 422 ms
59,732 KB
testcase_01 AC 105 ms
53,176 KB
testcase_02 AC 96 ms
52,828 KB
testcase_03 AC 104 ms
53,008 KB
testcase_04 AC 603 ms
59,640 KB
testcase_05 AC 352 ms
57,856 KB
testcase_06 AC 403 ms
59,272 KB
testcase_07 AC 433 ms
59,344 KB
testcase_08 AC 598 ms
59,520 KB
testcase_09 AC 609 ms
59,608 KB
testcase_10 AC 421 ms
59,468 KB
testcase_11 AC 577 ms
59,532 KB
testcase_12 AC 439 ms
59,324 KB
testcase_13 AC 463 ms
59,472 KB
testcase_14 AC 543 ms
59,756 KB
testcase_15 AC 205 ms
57,656 KB
testcase_16 AC 219 ms
58,376 KB
testcase_17 AC 202 ms
56,864 KB
testcase_18 AC 239 ms
57,784 KB
testcase_19 AC 240 ms
58,936 KB
testcase_20 AC 271 ms
59,136 KB
testcase_21 AC 272 ms
59,196 KB
testcase_22 AC 315 ms
59,216 KB
testcase_23 AC 468 ms
59,528 KB
testcase_24 AC 448 ms
58,484 KB
testcase_25 AC 614 ms
59,700 KB
testcase_26 AC 523 ms
59,132 KB
testcase_27 AC 509 ms
59,168 KB
testcase_28 AC 505 ms
59,064 KB
testcase_29 AC 547 ms
59,448 KB
testcase_30 AC 506 ms
59,540 KB
testcase_31 AC 562 ms
59,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Kamo {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int N = s.nextInt();
		boolean tof = true;
		int[] x = new int[N];
		for(int i = 0;i < N;i++){
			x[i] = s.nextInt();
		}
		s.close();
		Arrays.sort(x);
		final int d = x[1]-x[0];
		for(int i = 1;i < N;i++){
			if(x[i] == x[i-1] || x[i]-x[i-1] != d){
				tof =false;
				break;
			}
		}
		if(tof){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}

	}

}
0