結果

問題 No.406 鴨等間隔の法則
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-29 16:08:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 261 ms / 2,000 ms
コード長 732 bytes
コンパイル時間 3,048 ms
コンパイル使用メモリ 75,796 KB
実行使用メモリ 50,692 KB
最終ジャッジ日時 2024-07-07 12:15:10
合計ジャッジ時間 9,610 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 172 ms
46,036 KB
testcase_01 AC 49 ms
36,912 KB
testcase_02 AC 49 ms
36,928 KB
testcase_03 AC 49 ms
37,008 KB
testcase_04 AC 229 ms
49,136 KB
testcase_05 AC 157 ms
45,460 KB
testcase_06 AC 169 ms
45,616 KB
testcase_07 AC 165 ms
46,724 KB
testcase_08 AC 232 ms
49,044 KB
testcase_09 AC 231 ms
48,984 KB
testcase_10 AC 174 ms
46,080 KB
testcase_11 AC 229 ms
49,068 KB
testcase_12 AC 194 ms
46,004 KB
testcase_13 AC 181 ms
46,644 KB
testcase_14 AC 231 ms
49,144 KB
testcase_15 AC 88 ms
39,104 KB
testcase_16 AC 95 ms
39,780 KB
testcase_17 AC 80 ms
38,348 KB
testcase_18 AC 92 ms
39,160 KB
testcase_19 AC 93 ms
40,124 KB
testcase_20 AC 120 ms
40,124 KB
testcase_21 AC 119 ms
40,452 KB
testcase_22 AC 140 ms
41,600 KB
testcase_23 AC 195 ms
46,120 KB
testcase_24 AC 228 ms
48,772 KB
testcase_25 AC 242 ms
49,036 KB
testcase_26 AC 231 ms
49,648 KB
testcase_27 AC 196 ms
49,024 KB
testcase_28 AC 189 ms
49,088 KB
testcase_29 AC 261 ms
48,952 KB
testcase_30 AC 235 ms
48,916 KB
testcase_31 AC 244 ms
50,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;

public class No406 {
	public static void main(String[] args) throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		String[] str = br.readLine().split(" ");
		int[] nums = new int[n];
		for(int i=0; i < n; i++) nums[i] = Integer.parseInt(str[i]);
		Arrays.sort(nums);
		int difference = nums[1] - nums[0];
		int count = 0;
		if(difference != 0){
			for(int i=1; i< n-1; i++)
				if((nums[i+1] - nums[i]) == difference){
					count++;
				}
		}
		if(count == n-2) System.out.println("YES");
		else System.out.println("NO");
	}
}
0