結果

問題 No.406 鴨等間隔の法則
ユーザー Ohnuma
提出日時 2020-04-10 10:00:33
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 270 bytes
コンパイル時間 477 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 24,232 KB
最終ジャッジ日時 2024-09-14 17:56:16
合計ジャッジ時間 4,272 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = sorted(list(map(int,input().split())))
if len(set(A))!=n:
    print('NO')
else:
    dis = A[1]-A[0]
    flg = True
    for i in range(1, n):
        if A[i] - A[i-1] != dis:
            flg = False
            break
    print('YES' if flg else 'NO')
0