結果
| 問題 | No.406 鴨等間隔の法則 |
| コンテスト | |
| ユーザー |
piconic_X
|
| 提出日時 | 2016-08-23 17:32:17 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 327 bytes |
| 記録 | |
| コンパイル時間 | 211 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 21,740 KB |
| 最終ジャッジ日時 | 2024-11-07 05:26:17 |
| 合計ジャッジ時間 | 3,242 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 21 WA * 8 |
ソースコード
N = int(input())
xs = sorted(list(map(int, input().split())))
nw = xs[1]
itv = nw - xs[0]
if itv == 0:
print('NO')
else:
for i in range(1, N-1):
nxt = xs[i+1]
if nxt - nw == itv:
continue
else:
print('NO')
break
nw = nxt
else:
print('YES')
piconic_X