結果

問題 No.406 鴨等間隔の法則
ユーザー ヒッキープログラミングするスレヒッキープログラミングするスレ
提出日時 2016-08-05 22:38:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 224 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,760 KB
最終ジャッジ日時 2024-07-07 11:22:17
合計ジャッジ時間 3,360 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
15,288 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 104 ms
20,448 KB
testcase_05 AC 58 ms
14,840 KB
testcase_06 AC 56 ms
14,980 KB
testcase_07 AC 55 ms
14,900 KB
testcase_08 AC 105 ms
20,888 KB
testcase_09 AC 114 ms
21,412 KB
testcase_10 AC 60 ms
15,272 KB
testcase_11 AC 99 ms
19,072 KB
testcase_12 AC 71 ms
16,572 KB
testcase_13 AC 65 ms
15,484 KB
testcase_14 AC 83 ms
19,500 KB
testcase_15 AC 27 ms
11,392 KB
testcase_16 AC 29 ms
11,264 KB
testcase_17 AC 26 ms
11,136 KB
testcase_18 AC 30 ms
11,520 KB
testcase_19 AC 31 ms
11,648 KB
testcase_20 AC 34 ms
12,160 KB
testcase_21 AC 35 ms
12,160 KB
testcase_22 AC 40 ms
13,712 KB
testcase_23 AC 69 ms
16,572 KB
testcase_24 AC 74 ms
18,616 KB
testcase_25 AC 112 ms
21,360 KB
testcase_26 AC 96 ms
21,484 KB
testcase_27 AC 74 ms
21,608 KB
testcase_28 AC 91 ms
21,364 KB
testcase_29 AC 93 ms
21,760 KB
testcase_30 AC 92 ms
21,480 KB
testcase_31 AC 109 ms
20,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
x = list(map(int, input().strip().split(' ')))
x.sort()
h = []
for (u, v) in zip(x[0:n-1], x[1:n]):
    h.append(v - u)
h.sort()
if h[0] > 0 and h[0] == h[len(h) - 1]:
    print('YES')
else:
    print('NO')
0