結果

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

ソースコード

diff #

#coding:utf-8
input()
kamos=list(map(int,input().split()))
kamos.sort()
print(kamos)
dst=kamos[1]-kamos[0]
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