結果

問題 No.406 鴨等間隔の法則
ユーザー Takayuki HirotaTakayuki Hirota
提出日時 2021-02-04 10:11:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 178 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 104,424 KB
最終ジャッジ日時 2024-06-30 15:19:43
合計ジャッジ時間 4,414 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
75,820 KB
testcase_01 AC 38 ms
52,612 KB
testcase_02 AC 38 ms
52,504 KB
testcase_03 AC 38 ms
52,664 KB
testcase_04 AC 80 ms
97,284 KB
testcase_05 AC 52 ms
72,144 KB
testcase_06 AC 54 ms
73,484 KB
testcase_07 AC 54 ms
75,880 KB
testcase_08 AC 75 ms
96,736 KB
testcase_09 AC 82 ms
102,180 KB
testcase_10 AC 55 ms
77,248 KB
testcase_11 AC 71 ms
92,504 KB
testcase_12 AC 60 ms
80,308 KB
testcase_13 AC 58 ms
78,848 KB
testcase_14 AC 90 ms
99,620 KB
testcase_15 AC 41 ms
59,032 KB
testcase_16 AC 44 ms
63,564 KB
testcase_17 AC 43 ms
61,652 KB
testcase_18 AC 45 ms
62,788 KB
testcase_19 AC 45 ms
63,076 KB
testcase_20 AC 47 ms
64,204 KB
testcase_21 AC 48 ms
65,408 KB
testcase_22 AC 52 ms
68,708 KB
testcase_23 AC 61 ms
82,320 KB
testcase_24 AC 83 ms
93,192 KB
testcase_25 AC 81 ms
100,928 KB
testcase_26 AC 99 ms
103,764 KB
testcase_27 AC 65 ms
85,292 KB
testcase_28 AC 80 ms
101,640 KB
testcase_29 AC 99 ms
104,424 KB
testcase_30 AC 100 ms
104,036 KB
testcase_31 AC 81 ms
101,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
*x,=map(int,input().split())

lx=set(x)
if len(lx)<len(x):
	print('NO')
else:
	x.sort()
	d=[x[i+1]-x[i] for i in range(len(x)-1)]
	print('YNEOS'[len(set(d))>1::2])
0