結果

問題 No.406 鴨等間隔の法則
ユーザー TawaraTawara
提出日時 2016-08-05 22:31:24
言語 Python2
(2.7.18)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 190 bytes
コンパイル時間 517 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 14,880 KB
最終ジャッジ日時 2024-07-07 11:19:07
合計ジャッジ時間 3,074 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
9,512 KB
testcase_01 AC 10 ms
6,944 KB
testcase_02 AC 9 ms
6,944 KB
testcase_03 AC 9 ms
6,940 KB
testcase_04 AC 76 ms
14,080 KB
testcase_05 AC 33 ms
9,260 KB
testcase_06 AC 33 ms
9,236 KB
testcase_07 AC 34 ms
9,280 KB
testcase_08 AC 74 ms
13,896 KB
testcase_09 AC 82 ms
14,808 KB
testcase_10 AC 37 ms
9,676 KB
testcase_11 AC 66 ms
12,832 KB
testcase_12 AC 45 ms
10,560 KB
testcase_13 AC 42 ms
10,104 KB
testcase_14 AC 87 ms
13,392 KB
testcase_15 AC 12 ms
6,944 KB
testcase_16 AC 13 ms
6,944 KB
testcase_17 AC 11 ms
6,944 KB
testcase_18 AC 13 ms
6,944 KB
testcase_19 AC 16 ms
7,040 KB
testcase_20 AC 18 ms
7,168 KB
testcase_21 AC 16 ms
7,296 KB
testcase_22 AC 28 ms
8,064 KB
testcase_23 AC 45 ms
10,872 KB
testcase_24 AC 74 ms
12,316 KB
testcase_25 AC 82 ms
14,868 KB
testcase_26 AC 101 ms
14,880 KB
testcase_27 AC 51 ms
14,868 KB
testcase_28 AC 52 ms
14,868 KB
testcase_29 AC 101 ms
14,868 KB
testcase_30 AC 100 ms
14,700 KB
testcase_31 AC 78 ms
14,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(raw_input())
x = map(int,raw_input().split())
x.sort()
d = x[1] - x[0]
for i in xrange(N-1):
	tmpd = x[i+1] - x[i]
	if tmpd == 0 or tmpd != d:
		print "NO"
		break
else:
	print "YES"
0