結果

問題 No.406 鴨等間隔の法則
ユーザー S6136OS6136O
提出日時 2017-09-20 20:52:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 261 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,608 KB
最終ジャッジ日時 2024-07-07 12:10:41
合計ジャッジ時間 3,162 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
15,156 KB
testcase_01 AC 26 ms
10,496 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 96 ms
20,316 KB
testcase_05 AC 49 ms
14,456 KB
testcase_06 AC 51 ms
14,336 KB
testcase_07 AC 51 ms
15,412 KB
testcase_08 AC 92 ms
20,888 KB
testcase_09 AC 101 ms
21,416 KB
testcase_10 AC 53 ms
15,048 KB
testcase_11 AC 82 ms
18,816 KB
testcase_12 AC 62 ms
16,116 KB
testcase_13 AC 59 ms
15,740 KB
testcase_14 AC 93 ms
19,496 KB
testcase_15 AC 28 ms
11,136 KB
testcase_16 AC 30 ms
11,392 KB
testcase_17 AC 27 ms
10,880 KB
testcase_18 AC 28 ms
11,264 KB
testcase_19 AC 31 ms
11,520 KB
testcase_20 AC 37 ms
11,904 KB
testcase_21 AC 35 ms
11,904 KB
testcase_22 AC 43 ms
13,316 KB
testcase_23 AC 66 ms
16,504 KB
testcase_24 AC 82 ms
18,680 KB
testcase_25 AC 101 ms
21,356 KB
testcase_26 AC 108 ms
21,608 KB
testcase_27 AC 78 ms
21,608 KB
testcase_28 AC 80 ms
21,228 KB
testcase_29 AC 108 ms
21,608 KB
testcase_30 AC 108 ms
21,608 KB
testcase_31 AC 98 ms
21,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
data = list(map(int, input().split()))
data.sort()
diffs = []

for i in range(1, n):
    diffs.append(data[i-1] - data[i])

diff_1 = diffs[0]
for d in diffs:
    if d != diff_1 or d == 0:
        print("NO")
        break
else:
    print("YES")
0