結果

問題 No.406 鴨等間隔の法則
ユーザー lhan
提出日時 2018-02-24 23:08:36
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 396 bytes
コンパイル時間 605 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 29,060 KB
最終ジャッジ日時 2024-11-06 13:17:39
合計ジャッジ時間 7,466 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample -- * 3
other TLE * 1 -- * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

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

isDuplicate = False
distance_list = []

for i in range(len(kamo) - 1):
    if kamo.count(kamo[i]) != 1:
        isDuplicate = True

    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