結果
| 問題 |
No.406 鴨等間隔の法則
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-10-01 01:05:32 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 118 ms / 2,000 ms |
| コード長 | 357 bytes |
| コンパイル時間 | 159 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 24,328 KB |
| 最終ジャッジ日時 | 2024-07-07 12:11:15 |
| 合計ジャッジ時間 | 3,395 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 29 |
ソースコード
def main():
N = int(input())
xs = map(int, input().split())
xs = list(sorted(xs))
if len(xs) != len(set(xs)):
print("NO")
return
pairs = zip(xs[:-1], xs[1:])
if len(set(abs(x1 - x2)
for x1, x2 in pairs)) == 1:
print("YES")
else:
print("NO")
if __name__ == '__main__':
main()