結果

問題 No.406 鴨等間隔の法則
ユーザー akitsugu777akitsugu777
提出日時 2018-10-16 13:15:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,608 KB
最終ジャッジ日時 2024-07-07 12:30:40
合計ジャッジ時間 3,767 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
15,156 KB
testcase_01 AC 33 ms
10,496 KB
testcase_02 AC 32 ms
10,496 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 118 ms
20,316 KB
testcase_05 AC 59 ms
14,456 KB
testcase_06 AC 61 ms
14,428 KB
testcase_07 AC 62 ms
15,132 KB
testcase_08 AC 118 ms
20,760 KB
testcase_09 AC 124 ms
21,284 KB
testcase_10 AC 65 ms
15,140 KB
testcase_11 AC 103 ms
18,816 KB
testcase_12 AC 76 ms
15,988 KB
testcase_13 AC 73 ms
15,616 KB
testcase_14 AC 112 ms
19,368 KB
testcase_15 AC 33 ms
11,136 KB
testcase_16 AC 37 ms
12,032 KB
testcase_17 AC 33 ms
11,136 KB
testcase_18 AC 37 ms
12,160 KB
testcase_19 AC 37 ms
11,648 KB
testcase_20 AC 40 ms
11,776 KB
testcase_21 AC 41 ms
12,416 KB
testcase_22 AC 49 ms
13,064 KB
testcase_23 AC 76 ms
16,380 KB
testcase_24 AC 95 ms
18,480 KB
testcase_25 AC 127 ms
21,356 KB
testcase_26 AC 128 ms
21,604 KB
testcase_27 AC 88 ms
21,480 KB
testcase_28 AC 95 ms
21,356 KB
testcase_29 AC 123 ms
21,608 KB
testcase_30 AC 121 ms
21,352 KB
testcase_31 AC 126 ms
20,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
l = list(map(int, input().split()))
l = sorted(l)


l2 = []
for i in range(n-1):
    l2.append(l[i+1] - l[i])

if 0 in l2:
    print('NO')

else:
    if len(set(l2)) != 1:
        print('NO')
    else:
        print('YES')
0