結果

問題 No.406 鴨等間隔の法則
ユーザー minezumuminezumu
提出日時 2018-07-23 15:02:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 327 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 22,352 KB
最終ジャッジ日時 2024-07-07 12:28:52
合計ジャッジ時間 3,487 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
15,408 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 119 ms
20,320 KB
testcase_05 AC 61 ms
14,468 KB
testcase_06 AC 58 ms
14,344 KB
testcase_07 AC 59 ms
14,776 KB
testcase_08 AC 119 ms
21,148 KB
testcase_09 AC 124 ms
22,172 KB
testcase_10 AC 64 ms
15,264 KB
testcase_11 AC 105 ms
18,940 KB
testcase_12 AC 74 ms
16,000 KB
testcase_13 AC 67 ms
15,492 KB
testcase_14 AC 102 ms
19,424 KB
testcase_15 AC 28 ms
11,264 KB
testcase_16 AC 31 ms
11,392 KB
testcase_17 AC 28 ms
11,136 KB
testcase_18 AC 29 ms
11,520 KB
testcase_19 AC 32 ms
11,520 KB
testcase_20 AC 35 ms
11,904 KB
testcase_21 AC 35 ms
12,032 KB
testcase_22 AC 46 ms
13,336 KB
testcase_23 AC 75 ms
16,380 KB
testcase_24 AC 91 ms
18,608 KB
testcase_25 AC 123 ms
21,492 KB
testcase_26 AC 117 ms
22,264 KB
testcase_27 AC 74 ms
22,260 KB
testcase_28 AC 103 ms
21,360 KB
testcase_29 AC 124 ms
22,260 KB
testcase_30 AC 126 ms
22,352 KB
testcase_31 AC 115 ms
21,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = list(map(int,input().split()))
X = sorted(X)
D = []
counter = 0
for i in range(N-1) :
    if X[i+1] - X[i] != 0 :
        d = X[i+1] - X[i]
        D.append(d)

if len(D) != 0 :
    checker = D[0]
    if N-1 == D.count(checker) :
        print("YES")
    else :
        print("NO")
else :
    print("NO")

0