結果

問題 No.406 鴨等間隔の法則
ユーザー FVRChanFVRChan
提出日時 2017-10-05 10:13:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 623 ms / 2,000 ms
コード長 494 bytes
コンパイル時間 1,933 ms
コンパイル使用メモリ 74,756 KB
実行使用メモリ 50,288 KB
最終ジャッジ日時 2024-07-07 12:21:02
合計ジャッジ時間 16,876 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 471 ms
48,208 KB
testcase_01 AC 115 ms
41,292 KB
testcase_02 AC 101 ms
40,388 KB
testcase_03 AC 112 ms
41,244 KB
testcase_04 AC 623 ms
48,436 KB
testcase_05 AC 422 ms
48,116 KB
testcase_06 AC 458 ms
48,292 KB
testcase_07 AC 421 ms
48,052 KB
testcase_08 AC 614 ms
48,560 KB
testcase_09 AC 520 ms
48,608 KB
testcase_10 AC 470 ms
48,092 KB
testcase_11 AC 524 ms
48,680 KB
testcase_12 AC 435 ms
48,080 KB
testcase_13 AC 472 ms
48,476 KB
testcase_14 AC 605 ms
48,388 KB
testcase_15 AC 214 ms
45,740 KB
testcase_16 AC 236 ms
45,936 KB
testcase_17 AC 197 ms
44,788 KB
testcase_18 AC 224 ms
46,328 KB
testcase_19 AC 224 ms
46,260 KB
testcase_20 AC 283 ms
46,732 KB
testcase_21 AC 274 ms
48,336 KB
testcase_22 AC 315 ms
46,872 KB
testcase_23 AC 476 ms
48,444 KB
testcase_24 AC 446 ms
47,780 KB
testcase_25 AC 618 ms
48,700 KB
testcase_26 AC 553 ms
50,288 KB
testcase_27 AC 459 ms
48,528 KB
testcase_28 AC 500 ms
48,584 KB
testcase_29 AC 544 ms
48,312 KB
testcase_30 AC 542 ms
48,976 KB
testcase_31 AC 589 ms
48,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
public class Main{
	private static Scanner sc=new Scanner(System.in);
	public static void main(String args[])throws Exception{
		int n=sc.nextInt();
		int are[]=new int[n];
		for(int i=0;i<are.length;i++)are[i]=sc.nextInt();
		Arrays.sort(are);
		int sa=are[1]-are[0];
		for(int i=0;i<are.length-1;i++){
			int now=are[i+1]-are[i];
			if(now != sa || now == 0){
				System.out.println("NO");
				return;
			}
		}System.out.println("YES");
	}
}
0