結果

問題 No.406 鴨等間隔の法則
ユーザー etale.K3etale.K3
提出日時 2020-11-04 18:38:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 219 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 24,188 KB
最終ジャッジ日時 2024-07-22 09:58:51
合計ジャッジ時間 3,536 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
16,372 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 35 ms
10,496 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 94 ms
22,412 KB
testcase_05 AC 54 ms
16,920 KB
testcase_06 AC 55 ms
15,816 KB
testcase_07 AC 54 ms
16,796 KB
testcase_08 AC 96 ms
22,484 KB
testcase_09 AC 103 ms
23,696 KB
testcase_10 AC 57 ms
16,340 KB
testcase_11 AC 81 ms
19,068 KB
testcase_12 AC 63 ms
17,304 KB
testcase_13 AC 62 ms
16,232 KB
testcase_14 AC 119 ms
22,916 KB
testcase_15 AC 32 ms
11,136 KB
testcase_16 AC 34 ms
12,032 KB
testcase_17 AC 32 ms
11,136 KB
testcase_18 AC 33 ms
12,160 KB
testcase_19 AC 38 ms
12,160 KB
testcase_20 AC 42 ms
12,544 KB
testcase_21 AC 38 ms
12,544 KB
testcase_22 AC 52 ms
15,496 KB
testcase_23 AC 66 ms
17,560 KB
testcase_24 AC 103 ms
18,608 KB
testcase_25 AC 102 ms
23,936 KB
testcase_26 AC 137 ms
24,104 KB
testcase_27 AC 68 ms
21,736 KB
testcase_28 AC 77 ms
23,680 KB
testcase_29 AC 142 ms
24,188 KB
testcase_30 AC 138 ms
23,960 KB
testcase_31 AC 100 ms
23,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

for i in range(N-2):
    if X[i] + X[i+2] != 2*X[i+1]:
        print('NO')
        exit()

print('YES')
0