結果

問題 No.406 鴨等間隔の法則
ユーザー 310icecrystal310icecrystal
提出日時 2023-06-10 20:51:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 177 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 84,880 KB
最終ジャッジ日時 2024-06-10 23:56:07
合計ジャッジ時間 3,052 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
70,332 KB
testcase_01 AC 31 ms
53,136 KB
testcase_02 AC 30 ms
52,496 KB
testcase_03 AC 31 ms
52,268 KB
testcase_04 AC 70 ms
81,960 KB
testcase_05 AC 47 ms
70,160 KB
testcase_06 AC 48 ms
69,368 KB
testcase_07 AC 47 ms
69,720 KB
testcase_08 AC 66 ms
82,352 KB
testcase_09 AC 72 ms
84,656 KB
testcase_10 AC 48 ms
70,748 KB
testcase_11 AC 61 ms
79,660 KB
testcase_12 AC 52 ms
73,076 KB
testcase_13 AC 50 ms
72,048 KB
testcase_14 AC 66 ms
80,196 KB
testcase_15 AC 36 ms
60,660 KB
testcase_16 AC 37 ms
61,232 KB
testcase_17 AC 36 ms
60,284 KB
testcase_18 AC 36 ms
63,056 KB
testcase_19 AC 35 ms
61,524 KB
testcase_20 AC 39 ms
61,660 KB
testcase_21 AC 38 ms
63,156 KB
testcase_22 AC 41 ms
65,280 KB
testcase_23 AC 54 ms
72,888 KB
testcase_24 AC 61 ms
78,668 KB
testcase_25 AC 70 ms
84,360 KB
testcase_26 AC 71 ms
83,996 KB
testcase_27 AC 55 ms
84,756 KB
testcase_28 AC 57 ms
84,880 KB
testcase_29 AC 75 ms
83,272 KB
testcase_30 AC 70 ms
84,456 KB
testcase_31 AC 70 ms
84,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
x = list(map(int,input().split()))
x.sort()

S = set()
for i in range(N-1):
	S.add(x[i+1]-x[i])

if len(S) == 1 and 0 not in S:
	print("YES")
else:
	print("NO")
0