結果

問題 No.406 鴨等間隔の法則
ユーザー bellangeldindonbellangeldindon
提出日時 2019-05-10 13:32:24
言語 Python2
(2.7.18)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 214 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 14,996 KB
最終ジャッジ日時 2024-07-07 12:38:18
合計ジャッジ時間 3,000 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
9,640 KB
testcase_01 AC 10 ms
6,944 KB
testcase_02 AC 10 ms
6,944 KB
testcase_03 AC 9 ms
6,940 KB
testcase_04 AC 80 ms
14,084 KB
testcase_05 AC 34 ms
9,256 KB
testcase_06 AC 35 ms
9,236 KB
testcase_07 AC 35 ms
9,404 KB
testcase_08 AC 77 ms
14,024 KB
testcase_09 AC 86 ms
14,684 KB
testcase_10 AC 38 ms
9,632 KB
testcase_11 AC 69 ms
12,960 KB
testcase_12 AC 47 ms
10,564 KB
testcase_13 AC 46 ms
10,356 KB
testcase_14 AC 89 ms
13,516 KB
testcase_15 AC 11 ms
6,944 KB
testcase_16 AC 14 ms
6,944 KB
testcase_17 AC 11 ms
6,940 KB
testcase_18 AC 12 ms
6,944 KB
testcase_19 AC 16 ms
6,940 KB
testcase_20 AC 20 ms
7,040 KB
testcase_21 AC 17 ms
7,296 KB
testcase_22 AC 29 ms
8,192 KB
testcase_23 AC 47 ms
11,000 KB
testcase_24 AC 78 ms
12,444 KB
testcase_25 AC 86 ms
14,996 KB
testcase_26 AC 103 ms
14,992 KB
testcase_27 AC 53 ms
14,740 KB
testcase_28 AC 57 ms
14,868 KB
testcase_29 AC 105 ms
14,992 KB
testcase_30 AC 102 ms
14,640 KB
testcase_31 AC 81 ms
14,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(raw_input())
duck = map(int, raw_input().split())
duck.sort()
tmp = duck[1]-duck[0]
ans = 'NO'
if tmp != 0:
	for i in range(1, N-1):
		if duck[i+1]-duck[i] != tmp: break
		if i == N-2: ans = 'YES'
print ans
0