結果
問題 |
No.406 鴨等間隔の法則
|
ユーザー |
![]() |
提出日時 | 2017-03-02 14:22:20 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 197 bytes |
コンパイル時間 | 140 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 21,732 KB |
最終ジャッジ日時 | 2024-11-07 10:17:45 |
合計ジャッジ時間 | 3,324 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 WA * 8 |
ソースコード
input() a=sorted(list(map(int,input().split()))) pre=a[1];dif=a[1]-a[0] if dif==0:print('NO');exit() for x in a[2:]: if dif==0 or x-pre!=dif: print('NO');exit() pre=x;dif=x-pre print('YES')