結果

問題 No.406 鴨等間隔の法則
ユーザー 310icecrystal310icecrystal
提出日時 2023-06-10 20:50:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 162 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 84,400 KB
最終ジャッジ日時 2024-06-10 23:55:50
合計ジャッジ時間 3,409 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
70,656 KB
testcase_01 AC 32 ms
51,712 KB
testcase_02 AC 31 ms
51,840 KB
testcase_03 WA -
testcase_04 AC 66 ms
81,920 KB
testcase_05 AC 47 ms
68,096 KB
testcase_06 AC 47 ms
68,224 KB
testcase_07 AC 47 ms
69,632 KB
testcase_08 AC 65 ms
81,920 KB
testcase_09 AC 70 ms
83,712 KB
testcase_10 AC 49 ms
70,296 KB
testcase_11 AC 66 ms
78,848 KB
testcase_12 AC 52 ms
71,552 KB
testcase_13 AC 51 ms
71,808 KB
testcase_14 AC 68 ms
79,872 KB
testcase_15 WA -
testcase_16 AC 37 ms
60,928 KB
testcase_17 AC 36 ms
59,904 KB
testcase_18 AC 38 ms
61,056 KB
testcase_19 AC 42 ms
60,416 KB
testcase_20 AC 45 ms
61,868 KB
testcase_21 AC 45 ms
62,848 KB
testcase_22 AC 45 ms
64,000 KB
testcase_23 AC 55 ms
73,216 KB
testcase_24 AC 64 ms
77,312 KB
testcase_25 AC 69 ms
84,224 KB
testcase_26 AC 70 ms
83,708 KB
testcase_27 WA -
testcase_28 AC 57 ms
83,712 KB
testcase_29 AC 71 ms
83,328 KB
testcase_30 AC 69 ms
83,584 KB
testcase_31 AC 69 ms
83,200 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:
	print("YES")
else:
	print("NO")
0