結果

問題 No.406 鴨等間隔の法則
ユーザー えいじえいじ
提出日時 2023-10-08 10:38:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 208 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,736 KB
最終ジャッジ日時 2024-07-26 18:05:13
合計ジャッジ時間 4,781 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
15,536 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 125 ms
20,444 KB
testcase_05 AC 61 ms
15,232 KB
testcase_06 AC 63 ms
14,512 KB
testcase_07 AC 63 ms
15,240 KB
testcase_08 AC 123 ms
21,020 KB
testcase_09 AC 134 ms
21,284 KB
testcase_10 AC 69 ms
15,364 KB
testcase_11 AC 103 ms
19,068 KB
testcase_12 AC 80 ms
16,120 KB
testcase_13 AC 74 ms
16,040 KB
testcase_14 AC 115 ms
19,624 KB
testcase_15 AC 33 ms
11,392 KB
testcase_16 AC 35 ms
12,032 KB
testcase_17 AC 33 ms
11,264 KB
testcase_18 AC 35 ms
12,288 KB
testcase_19 AC 37 ms
11,776 KB
testcase_20 AC 40 ms
12,032 KB
testcase_21 AC 40 ms
12,672 KB
testcase_22 AC 50 ms
13,452 KB
testcase_23 AC 80 ms
16,528 KB
testcase_24 AC 99 ms
18,680 KB
testcase_25 AC 136 ms
21,484 KB
testcase_26 AC 122 ms
21,732 KB
testcase_27 AC 93 ms
21,708 KB
testcase_28 AC 99 ms
21,484 KB
testcase_29 AC 124 ms
21,736 KB
testcase_30 AC 118 ms
21,604 KB
testcase_31 AC 130 ms
21,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

n = int(input())
x = sorted([int(x) for x in input().split()])
t = []
for i in range(len(x) - 1):
    t.append(x[i + 1] - x[i])
print("YES" if len(set(t)) == 1 and t[0] != 0 else "NO")
0