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