結果
問題 |
No.406 鴨等間隔の法則
|
ユーザー |
![]() |
提出日時 | 2018-05-14 23:41:39 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 204 bytes |
コンパイル時間 | 89 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 21,864 KB |
最終ジャッジ日時 | 2024-06-28 11:53:06 |
合計ジャッジ時間 | 3,730 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 1 |
other | AC * 27 WA * 2 |
ソースコード
n=int(input()) a=list(int(i) for i in input().split()) count=0 a.sort() d=a[1]-a[0] for i in range(len(a)-1): if a[i+1]-a[i]!=d: count+=1 if count==0: print('YES') else: print('NO')