結果

問題 No.406 鴨等間隔の法則
ユーザー na-sh
提出日時 2019-07-08 13:28:33
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 290 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,128 KB
最終ジャッジ日時 2024-10-08 06:47:52
合計ジャッジ時間 4,159 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 21 WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
x = list(map(int, input().split()))
x = sorted(x)

if len(x) != len(set(x)):
    print('NO')
else:
    a = x.pop(0)
    b = x.pop(0)
    d = b - a
    for c in x:
        if b - c != d:
            print('NO')
            break
        b = c
    else:
        print('YES')
0