結果

問題 No.406 鴨等間隔の法則
ユーザー kamome
提出日時 2019-07-28 19:32:28
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 240 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,776 KB
最終ジャッジ日時 2024-07-02 15:06:32
合計ジャッジ時間 3,182 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 21 WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding:utf-8
input()
kamos=list(map(int,input().split()))
kamos.sort()
dst=kamos[0]-kamos[1]
for i in range(1,len(kamos)):
    if (kamos[i] - kamos[i-1] != dst) or (kamos[i] - kamos[i-1]==0):
        print("NO")
        exit()
print("YES")
0