結果
| 問題 |
No.406 鴨等間隔の法則
|
| コンテスト | |
| ユーザー |
u
|
| 提出日時 | 2018-02-26 22:31:47 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 29 |
ソースコード
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")
u