結果
問題 |
No.406 鴨等間隔の法則
|
ユーザー |
![]() |
提出日時 | 2018-05-14 23:46:04 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 307 bytes |
コンパイル時間 | 166 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 25,784 KB |
最終ジャッジ日時 | 2024-06-28 11:53:16 |
合計ジャッジ時間 | 6,633 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | -- * 3 |
other | TLE * 1 -- * 28 |
ソースコード
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): for j in range(i+1,len(a)): if a[i]==a[j]: count+=1 for i in range(len(a)-1): if a[i+1]-a[i]!=d: count+=1 if count==0: print('YES') else: print('NO')