結果

問題 No.406 鴨等間隔の法則
ユーザー tookunn_1213tookunn_1213
提出日時 2016-08-05 23:41:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 225 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,740 KB
最終ジャッジ日時 2024-07-07 11:28:09
合計ジャッジ時間 3,433 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
15,288 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 79 ms
20,316 KB
testcase_05 AC 45 ms
14,208 KB
testcase_06 AC 44 ms
14,472 KB
testcase_07 AC 47 ms
14,516 KB
testcase_08 AC 79 ms
20,888 KB
testcase_09 AC 83 ms
21,288 KB
testcase_10 AC 47 ms
14,924 KB
testcase_11 AC 72 ms
18,944 KB
testcase_12 AC 57 ms
15,996 KB
testcase_13 AC 52 ms
15,616 KB
testcase_14 AC 105 ms
19,504 KB
testcase_15 AC 29 ms
11,136 KB
testcase_16 AC 30 ms
11,520 KB
testcase_17 AC 28 ms
11,136 KB
testcase_18 AC 29 ms
11,520 KB
testcase_19 AC 34 ms
11,520 KB
testcase_20 AC 37 ms
11,904 KB
testcase_21 AC 32 ms
11,904 KB
testcase_22 AC 43 ms
13,128 KB
testcase_23 AC 58 ms
16,380 KB
testcase_24 AC 92 ms
18,744 KB
testcase_25 AC 84 ms
21,360 KB
testcase_26 AC 120 ms
21,740 KB
testcase_27 AC 63 ms
21,612 KB
testcase_28 AC 65 ms
21,360 KB
testcase_29 AC 115 ms
21,612 KB
testcase_30 AC 113 ms
21,480 KB
testcase_31 AC 82 ms
21,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
x = [int(i) for i in input().split()]
x.sort()
s = x[1] - x[0]
flag = True
for i in range(N - 1):
	if x[i + 1] == x[i] or x[i + 1] - x[i] != s:
		flag = False
		break
if flag:
	print("YES")
else:
	print("NO")
0