結果
| 問題 |
No.406 鴨等間隔の法則
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-04-28 23:25:45 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 147 bytes |
| コンパイル時間 | 406 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 21,728 KB |
| 最終ジャッジ日時 | 2024-12-21 12:54:50 |
| 合計ジャッジ時間 | 3,802 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 21 WA * 8 |
ソースコード
n=input()
x=sorted(list(map(int,input().split())));s=x[1]-x[0]
for i in range(2,len(x)):
if s!=x[i]-s or s==0: print('NO');exit()
print('YES')