結果

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

ソースコード

diff #

n=input()
x=sorted(list(map(int,input().split())));s=x[1]-x[0]
for i in range(2,len(x)):
    if s!=x[i]-s: print('NO');exit()
print('YES')
0