結果

問題 No.406 鴨等間隔の法則
ユーザー alcoholampalcoholamp
提出日時 2019-10-30 10:42:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 453 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 29,096 KB
最終ジャッジ日時 2024-07-07 12:44:05
合計ジャッジ時間 4,083 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
16,596 KB
testcase_01 AC 25 ms
10,496 KB
testcase_02 AC 25 ms
10,496 KB
testcase_03 AC 26 ms
10,496 KB
testcase_04 AC 120 ms
28,240 KB
testcase_05 AC 58 ms
15,952 KB
testcase_06 AC 60 ms
15,956 KB
testcase_07 AC 60 ms
16,132 KB
testcase_08 AC 115 ms
28,300 KB
testcase_09 AC 123 ms
28,952 KB
testcase_10 AC 63 ms
16,496 KB
testcase_11 AC 103 ms
22,180 KB
testcase_12 AC 77 ms
19,832 KB
testcase_13 AC 73 ms
19,456 KB
testcase_14 AC 107 ms
22,480 KB
testcase_15 AC 29 ms
11,136 KB
testcase_16 AC 32 ms
12,160 KB
testcase_17 AC 29 ms
11,264 KB
testcase_18 AC 35 ms
12,276 KB
testcase_19 AC 38 ms
11,904 KB
testcase_20 AC 41 ms
12,672 KB
testcase_21 AC 41 ms
12,904 KB
testcase_22 AC 53 ms
14,660 KB
testcase_23 AC 82 ms
19,972 KB
testcase_24 AC 95 ms
21,904 KB
testcase_25 AC 137 ms
28,888 KB
testcase_26 AC 125 ms
29,096 KB
testcase_27 AC 76 ms
18,564 KB
testcase_28 AC 103 ms
28,916 KB
testcase_29 AC 130 ms
29,092 KB
testcase_30 AC 129 ms
29,092 KB
testcase_31 AC 121 ms
28,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Problem0406:
	def solve(this):
		n = int(input())
		
		c1 = True
		res = {}
		for i in map(int, input().split()):
			res[i] = res.get(i, 0) + 1
			if res[i] >= 2:
				c1 = False
		
		t = sorted(list(res.keys()))
		c2 = {}
		for i in range(len(t) - 1):
			k = abs(t[i+1] - t[i])
			c2[k] = c2.get(k, 0) + 1
		
		if c1 and len(c2) == 1:
			print("YES")
		else:
			print("NO")
			
if __name__ == "__main__":
	problem = Problem0406()
	problem.solve()
0