結果

問題 No.406 鴨等間隔の法則
ユーザー tsunabittsunabit
提出日時 2018-06-23 11:44:12
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 589 bytes
コンパイル時間 3,609 ms
コンパイル使用メモリ 80,108 KB
実行使用メモリ 67,108 KB
最終ジャッジ日時 2024-06-30 18:17:27
合計ジャッジ時間 16,637 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 337 ms
58,304 KB
testcase_01 AC 132 ms
54,316 KB
testcase_02 AC 133 ms
54,256 KB
testcase_03 WA -
testcase_04 AC 484 ms
64,980 KB
testcase_05 AC 342 ms
58,064 KB
testcase_06 AC 351 ms
58,288 KB
testcase_07 AC 341 ms
57,884 KB
testcase_08 AC 461 ms
64,724 KB
testcase_09 AC 512 ms
67,008 KB
testcase_10 AC 353 ms
58,376 KB
testcase_11 AC 441 ms
64,612 KB
testcase_12 AC 378 ms
62,740 KB
testcase_13 AC 365 ms
60,496 KB
testcase_14 AC 449 ms
64,412 KB
testcase_15 WA -
testcase_16 AC 214 ms
54,996 KB
testcase_17 AC 183 ms
54,412 KB
testcase_18 AC 229 ms
57,300 KB
testcase_19 AC 230 ms
57,328 KB
testcase_20 AC 236 ms
57,224 KB
testcase_21 AC 246 ms
57,292 KB
testcase_22 AC 300 ms
59,912 KB
testcase_23 AC 372 ms
62,468 KB
testcase_24 AC 436 ms
64,292 KB
testcase_25 AC 511 ms
66,744 KB
testcase_26 AC 534 ms
67,108 KB
testcase_27 WA -
testcase_28 AC 428 ms
66,640 KB
testcase_29 AC 478 ms
67,032 KB
testcase_30 AC 491 ms
66,760 KB
testcase_31 AC 492 ms
64,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.Stream;

public class No406 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);
		int n = Integer.parseInt(sc.nextLine());
		int[] x = Stream.of(sc.nextLine().split(" ", 0)).mapToInt(Integer::parseInt).toArray();
		Arrays.sort(x);
		String out = "YES";
		int temp = x[1] - x[0];
		for(int i = 0; i < n - 1; i++){
		    if(temp != x[i + 1] - x[i]) {;
				out = "NO";
				break;
			}
		}
		System.out.println(out);
	}
}
0