結果

問題 No.406 鴨等間隔の法則
ユーザー brthyyjpbrthyyjp
提出日時 2021-01-11 21:24:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 235 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,056 KB
実行使用メモリ 100,840 KB
最終ジャッジ日時 2024-05-01 06:56:09
合計ジャッジ時間 4,163 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
74,912 KB
testcase_01 AC 42 ms
53,744 KB
testcase_02 AC 40 ms
53,832 KB
testcase_03 AC 39 ms
52,092 KB
testcase_04 AC 75 ms
94,332 KB
testcase_05 AC 54 ms
71,448 KB
testcase_06 AC 57 ms
71,856 KB
testcase_07 AC 54 ms
72,560 KB
testcase_08 AC 75 ms
94,228 KB
testcase_09 AC 80 ms
97,864 KB
testcase_10 AC 55 ms
74,248 KB
testcase_11 AC 70 ms
90,392 KB
testcase_12 AC 60 ms
78,676 KB
testcase_13 AC 60 ms
78,076 KB
testcase_14 AC 88 ms
95,132 KB
testcase_15 AC 43 ms
59,876 KB
testcase_16 AC 44 ms
61,700 KB
testcase_17 AC 43 ms
59,828 KB
testcase_18 AC 44 ms
61,044 KB
testcase_19 AC 45 ms
62,820 KB
testcase_20 AC 47 ms
65,328 KB
testcase_21 AC 46 ms
63,424 KB
testcase_22 AC 53 ms
68,388 KB
testcase_23 AC 60 ms
80,520 KB
testcase_24 AC 82 ms
92,136 KB
testcase_25 AC 77 ms
97,936 KB
testcase_26 AC 95 ms
100,840 KB
testcase_27 AC 65 ms
82,036 KB
testcase_28 AC 76 ms
97,036 KB
testcase_29 AC 96 ms
99,900 KB
testcase_30 AC 96 ms
99,780 KB
testcase_31 AC 77 ms
97,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
X = list(map(int, input().split()))

if len(X) != len(set(X)):
    print('NO')
    exit()

X.sort()
d = X[1]-X[0]
for i in range(n-1):
    if X[i]+d != X[i+1]:
        print('NO')
        exit()
else:
    print('YES')
0