結果

問題 No.406 鴨等間隔の法則
ユーザー knt3110
提出日時 2018-05-14 23:30:55
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 211 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,616 KB
最終ジャッジ日時 2024-06-28 11:52:38
合計ジャッジ時間 3,429 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(int(i) for i in input().split())

a=a.sort()
d=a[1]-a[0]
for i in range(len(a)-1):
    if a[i+1]-a[i]!=d:
        count+=1
        break
if count==0:
    print('YES')
else:
    print('NO')
0