結果

問題 No.406 鴨等間隔の法則
ユーザー uu
提出日時 2018-02-26 22:17:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 461 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 25,776 KB
最終ジャッジ日時 2024-05-03 19:16:26
合計ジャッジ時間 4,530 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
16,528 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 WA -
testcase_04 AC 133 ms
24,420 KB
testcase_05 AC 61 ms
16,556 KB
testcase_06 AC 63 ms
15,364 KB
testcase_07 AC 62 ms
16,568 KB
testcase_08 AC 129 ms
24,336 KB
testcase_09 AC 136 ms
25,404 KB
testcase_10 AC 70 ms
16,664 KB
testcase_11 AC 108 ms
20,452 KB
testcase_12 AC 81 ms
19,164 KB
testcase_13 AC 77 ms
18,852 KB
testcase_14 AC 116 ms
20,892 KB
testcase_15 WA -
testcase_16 AC 32 ms
12,160 KB
testcase_17 AC 28 ms
11,264 KB
testcase_18 AC 32 ms
12,416 KB
testcase_19 AC 32 ms
12,160 KB
testcase_20 AC 36 ms
12,780 KB
testcase_21 AC 38 ms
13,212 KB
testcase_22 AC 50 ms
15,024 KB
testcase_23 AC 89 ms
18,256 KB
testcase_24 AC 100 ms
19,856 KB
testcase_25 AC 138 ms
25,628 KB
testcase_26 AC 127 ms
25,776 KB
testcase_27 WA -
testcase_28 AC 108 ms
25,556 KB
testcase_29 AC 124 ms
25,756 KB
testcase_30 AC 126 ms
25,616 KB
testcase_31 AC 136 ms
25,052 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(counter.values()) - {1}) == set():
    isDuplicate = False


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