結果

問題 No.406 鴨等間隔の法則
ユーザー Luoto-greenLuoto-green
提出日時 2017-07-27 20:04:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 151 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,736 KB
最終ジャッジ日時 2024-11-07 10:39:43
合計ジャッジ時間 3,410 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
15,724 KB
testcase_01 RE -
testcase_02 AC 30 ms
10,624 KB
testcase_03 RE -
testcase_04 AC 98 ms
20,452 KB
testcase_05 AC 53 ms
15,584 KB
testcase_06 AC 56 ms
14,476 KB
testcase_07 AC 55 ms
15,676 KB
testcase_08 AC 100 ms
21,020 KB
testcase_09 AC 104 ms
21,420 KB
testcase_10 AC 59 ms
15,756 KB
testcase_11 AC 87 ms
19,068 KB
testcase_12 AC 69 ms
16,812 KB
testcase_13 AC 64 ms
15,616 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 35 ms
12,160 KB
testcase_17 AC 32 ms
11,136 KB
testcase_18 AC 34 ms
12,288 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 38 ms
12,800 KB
testcase_22 RE -
testcase_23 AC 67 ms
16,380 KB
testcase_24 RE -
testcase_25 AC 106 ms
21,492 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 78 ms
21,364 KB
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 107 ms
20,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = sorted(map(int,input().split()))
x = [xi - xj for xi, xj in zip(A[:-1], A[1:])]
print(["NO","YES"][len(set(x))==1 and 0 not in s])
0