結果

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

ソースコード

diff #

n=int(input())
x=list(map(int,input().split()))
x.sort()
num=x[1]-x[0]
ans=0
for i in range(1,n-1):
    if x[i+1]-x[i]!=num:
        ans=1
        break
if ans==0:
    print("YES")
else:
    print("NO")
0