結果

問題 No.406 鴨等間隔の法則
ユーザー Hirake
提出日時 2017-06-16 11:10:51
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 210 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,748 KB
最終ジャッジ日時 2024-11-07 10:34:51
合計ジャッジ時間 3,752 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 RE * 1
other AC * 21 RE * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

#406 birds same distance
N=int(input())
x=[int(i) for i in input().split()]
x.sort()
i=0
while x[i+1]-x[i]!=0 and x[i+2]-x[i+1]==x[i+1]-x[i] and i<N-2:
    i+=1
if i==N-2:
    print("YES")
else:
    print("NO")
0