結果

問題 No.406 鴨等間隔の法則
ユーザー compass19compass19
提出日時 2016-11-26 10:53:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 202 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,512 KB
最終ジャッジ日時 2024-07-07 11:56:02
合計ジャッジ時間 3,382 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
14,812 KB
testcase_01 AC 31 ms
10,368 KB
testcase_02 AC 30 ms
10,368 KB
testcase_03 AC 30 ms
10,368 KB
testcase_04 AC 84 ms
20,192 KB
testcase_05 AC 49 ms
14,076 KB
testcase_06 AC 50 ms
14,212 KB
testcase_07 AC 50 ms
14,648 KB
testcase_08 AC 85 ms
20,892 KB
testcase_09 AC 89 ms
21,164 KB
testcase_10 AC 53 ms
14,672 KB
testcase_11 AC 76 ms
18,632 KB
testcase_12 AC 60 ms
15,996 KB
testcase_13 AC 57 ms
15,488 KB
testcase_14 AC 102 ms
19,248 KB
testcase_15 AC 32 ms
11,136 KB
testcase_16 AC 35 ms
11,264 KB
testcase_17 AC 32 ms
10,880 KB
testcase_18 AC 34 ms
11,264 KB
testcase_19 AC 37 ms
11,392 KB
testcase_20 AC 39 ms
11,904 KB
testcase_21 AC 37 ms
11,776 KB
testcase_22 AC 47 ms
13,072 KB
testcase_23 AC 62 ms
16,092 KB
testcase_24 AC 89 ms
18,556 KB
testcase_25 AC 90 ms
21,096 KB
testcase_26 AC 116 ms
21,512 KB
testcase_27 AC 68 ms
21,260 KB
testcase_28 AC 68 ms
21,104 KB
testcase_29 AC 118 ms
21,396 KB
testcase_30 AC 118 ms
21,268 KB
testcase_31 AC 88 ms
20,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

input()
x = sorted(list(map(int, input().split())))
distance = x[0] - x[1]
if distance == 0: print('NO'); exit()
for i in range(len(x)-1):
	if x[i] - x[i+1] != distance: print('NO'); exit()
print('YES')
0