結果

問題 No.406 鴨等間隔の法則
ユーザー u
提出日時 2018-02-26 22:17:21
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 461 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,856 KB
最終ジャッジ日時 2024-11-24 22:52:40
合計ジャッジ時間 5,307 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 27 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

n = int(input())
kamo = sorted([int(i) for i in input().split()], reverse=True)

isDuplicate = False
distance_list = []

counter = Counter(kamo)
if (set(counter.values()) - {1}) == set():
    isDuplicate = False


for i in range(len(kamo) - 1):
    distance = 0
    distance = kamo[i] - kamo[i + 1]
    distance_list.append(distance)

if not isDuplicate and (len(set(distance_list)) == 1):
    print("YES")
else:
    print("NO")
0