結果

問題 No.406 鴨等間隔の法則
ユーザー R NR N
提出日時 2020-11-11 11:31:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 342 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 26,004 KB
最終ジャッジ日時 2024-07-22 18:23:09
合計ジャッジ時間 5,050 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
16,304 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 166 ms
24,716 KB
testcase_05 AC 73 ms
16,512 KB
testcase_06 AC 76 ms
15,628 KB
testcase_07 AC 77 ms
16,824 KB
testcase_08 AC 161 ms
24,680 KB
testcase_09 AC 177 ms
25,656 KB
testcase_10 AC 84 ms
16,204 KB
testcase_11 AC 141 ms
20,312 KB
testcase_12 AC 99 ms
19,332 KB
testcase_13 AC 94 ms
18,020 KB
testcase_14 AC 149 ms
21,000 KB
testcase_15 AC 35 ms
11,520 KB
testcase_16 AC 38 ms
11,904 KB
testcase_17 AC 34 ms
11,264 KB
testcase_18 AC 37 ms
12,032 KB
testcase_19 AC 40 ms
12,160 KB
testcase_20 AC 44 ms
12,928 KB
testcase_21 AC 45 ms
12,928 KB
testcase_22 AC 59 ms
15,172 KB
testcase_23 AC 95 ms
19,656 KB
testcase_24 AC 124 ms
20,012 KB
testcase_25 AC 180 ms
25,712 KB
testcase_26 AC 167 ms
26,004 KB
testcase_27 AC 120 ms
21,740 KB
testcase_28 AC 133 ms
25,772 KB
testcase_29 AC 164 ms
25,808 KB
testcase_30 AC 166 ms
25,792 KB
testcase_31 AC 175 ms
25,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding=utf-8:
import collections

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

line.sort()

c = collections.Counter(line)
d = c.values()

i = 0
k = list()

while i != len(line) - 1:
    k.append(line[i+1] - line[i])
    i += 1

if max(d) >= 2:
    print("NO")
elif k.count(k[0]) != len(k):
    print("NO")
else:
    print("YES")
0