結果

問題 No.406 鴨等間隔の法則
ユーザー pluto77pluto77
提出日時 2016-08-14 17:07:00
言語 Python2
(2.7.18)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 14,868 KB
最終ジャッジ日時 2024-07-07 11:38:31
合計ジャッジ時間 2,767 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
9,640 KB
testcase_01 AC 9 ms
6,940 KB
testcase_02 AC 9 ms
6,944 KB
testcase_03 AC 9 ms
6,944 KB
testcase_04 AC 77 ms
14,076 KB
testcase_05 AC 33 ms
9,132 KB
testcase_06 AC 32 ms
9,112 KB
testcase_07 AC 33 ms
9,152 KB
testcase_08 AC 78 ms
14,024 KB
testcase_09 AC 84 ms
14,808 KB
testcase_10 AC 35 ms
9,628 KB
testcase_11 AC 65 ms
12,960 KB
testcase_12 AC 44 ms
10,564 KB
testcase_13 AC 43 ms
10,232 KB
testcase_14 AC 91 ms
13,520 KB
testcase_15 AC 12 ms
6,940 KB
testcase_16 AC 14 ms
6,940 KB
testcase_17 AC 11 ms
6,940 KB
testcase_18 AC 13 ms
6,940 KB
testcase_19 AC 17 ms
6,940 KB
testcase_20 AC 19 ms
7,040 KB
testcase_21 AC 17 ms
7,296 KB
testcase_22 AC 30 ms
7,936 KB
testcase_23 AC 46 ms
10,876 KB
testcase_24 AC 78 ms
12,444 KB
testcase_25 AC 80 ms
14,864 KB
testcase_26 AC 109 ms
14,864 KB
testcase_27 AC 54 ms
14,736 KB
testcase_28 AC 52 ms
14,868 KB
testcase_29 AC 107 ms
14,740 KB
testcase_30 AC 110 ms
14,768 KB
testcase_31 AC 77 ms
14,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding: utf-8
#yuki_406

n=int(raw_input())
x=map(int,raw_input().split())

x.sort()
d=x[1]-x[0]
res=1
for i in xrange(n-1):
 if (x[i+1]-x[i])!=d or x[i+1]==x[i]:
  res=0
  break

if res==1:
 print "YES"
else:
 print "NO"
0