結果

問題 No.406 鴨等間隔の法則
ユーザー ryota-sakamotoryota-sakamoto
提出日時 2019-04-26 21:58:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 327 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 23,720 KB
最終ジャッジ日時 2024-07-07 12:37:53
合計ジャッジ時間 3,183 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
16,560 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 90 ms
22,376 KB
testcase_05 AC 50 ms
16,920 KB
testcase_06 AC 50 ms
16,028 KB
testcase_07 AC 53 ms
17,228 KB
testcase_08 AC 87 ms
23,224 KB
testcase_09 AC 96 ms
23,248 KB
testcase_10 AC 52 ms
16,548 KB
testcase_11 AC 77 ms
18,908 KB
testcase_12 AC 60 ms
17,616 KB
testcase_13 AC 58 ms
17,328 KB
testcase_14 AC 102 ms
22,588 KB
testcase_15 AC 27 ms
11,392 KB
testcase_16 AC 33 ms
12,032 KB
testcase_17 AC 28 ms
11,136 KB
testcase_18 AC 31 ms
12,288 KB
testcase_19 AC 32 ms
12,288 KB
testcase_20 AC 35 ms
12,672 KB
testcase_21 AC 34 ms
12,672 KB
testcase_22 AC 44 ms
15,524 KB
testcase_23 AC 62 ms
17,972 KB
testcase_24 AC 89 ms
18,704 KB
testcase_25 AC 97 ms
23,468 KB
testcase_26 AC 118 ms
23,720 KB
testcase_27 AC 68 ms
21,664 KB
testcase_28 AC 73 ms
23,652 KB
testcase_29 AC 116 ms
23,620 KB
testcase_30 AC 112 ms
23,468 KB
testcase_31 AC 92 ms
23,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def parse(n):
    return int(n)

n=int(input())
l=list(map(parse, input().split(" ")))
l.sort()

if len(set(l)) != len(l):
    print("NO")
    sys.exit()

l2=[]
for i in range(0, len(l) - 1):
    l2.append(l[i + 1] - l[i])
    
length=len(l2)
t=l2[0]
if sum(l2) == t * length:
    print("YES")
else:
    print("NO")
0