結果

問題 No.406 鴨等間隔の法則
ユーザー uu
提出日時 2018-02-26 22:31:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 465 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,072 KB
最終ジャッジ日時 2024-07-07 12:21:13
合計ジャッジ時間 4,138 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
17,440 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 148 ms
30,900 KB
testcase_05 AC 66 ms
17,588 KB
testcase_06 AC 68 ms
17,020 KB
testcase_07 AC 71 ms
17,844 KB
testcase_08 AC 145 ms
30,744 KB
testcase_09 AC 154 ms
31,552 KB
testcase_10 AC 72 ms
17,296 KB
testcase_11 AC 120 ms
22,916 KB
testcase_12 AC 92 ms
22,256 KB
testcase_13 AC 88 ms
20,788 KB
testcase_14 AC 130 ms
23,284 KB
testcase_15 AC 31 ms
11,392 KB
testcase_16 AC 34 ms
12,116 KB
testcase_17 AC 29 ms
11,392 KB
testcase_18 AC 33 ms
12,464 KB
testcase_19 AC 35 ms
12,288 KB
testcase_20 AC 39 ms
13,460 KB
testcase_21 AC 39 ms
13,476 KB
testcase_22 AC 52 ms
16,500 KB
testcase_23 AC 92 ms
21,448 KB
testcase_24 AC 111 ms
22,540 KB
testcase_25 AC 168 ms
31,780 KB
testcase_26 AC 147 ms
32,012 KB
testcase_27 AC 113 ms
21,624 KB
testcase_28 AC 128 ms
31,924 KB
testcase_29 AC 151 ms
32,072 KB
testcase_30 AC 146 ms
31,832 KB
testcase_31 AC 158 ms
31,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

n = int(input())
kamo = sorted([int(i) for i in input().split()], reverse=True)

isDuplicate = False
distance_list = []

counter = Counter(kamo)
if (set([len(Counter(kamo))]) - {1}) == set():
    isDuplicate = True


for i in range(len(kamo) - 1):
    distance = 0
    distance = kamo[i] - kamo[i + 1]
    distance_list.append(distance)


if not isDuplicate and (len(set(distance_list)) == 1):
    print("YES")
else:
    print("NO")
0