結果

問題 No.406 鴨等間隔の法則
ユーザー nisizawanisizawa
提出日時 2017-12-02 22:05:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 219 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,520 KB
最終ジャッジ日時 2024-07-07 12:17:19
合計ジャッジ時間 3,475 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
14,692 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 87 ms
20,200 KB
testcase_05 AC 49 ms
14,208 KB
testcase_06 AC 53 ms
14,348 KB
testcase_07 AC 53 ms
14,396 KB
testcase_08 AC 90 ms
20,892 KB
testcase_09 AC 93 ms
21,164 KB
testcase_10 AC 54 ms
14,680 KB
testcase_11 AC 78 ms
18,640 KB
testcase_12 AC 60 ms
15,876 KB
testcase_13 AC 58 ms
15,540 KB
testcase_14 AC 120 ms
19,504 KB
testcase_15 AC 32 ms
11,008 KB
testcase_16 AC 34 ms
11,264 KB
testcase_17 AC 32 ms
10,880 KB
testcase_18 AC 33 ms
11,136 KB
testcase_19 AC 38 ms
11,392 KB
testcase_20 AC 42 ms
11,904 KB
testcase_21 AC 35 ms
11,904 KB
testcase_22 AC 52 ms
12,948 KB
testcase_23 AC 64 ms
16,228 KB
testcase_24 AC 102 ms
18,300 KB
testcase_25 AC 92 ms
21,108 KB
testcase_26 AC 138 ms
21,396 KB
testcase_27 AC 73 ms
21,396 KB
testcase_28 AC 73 ms
21,364 KB
testcase_29 AC 138 ms
21,520 KB
testcase_30 AC 137 ms
21,396 KB
testcase_31 AC 91 ms
20,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
x = sorted([int(i) for i in input().split()])

for i in range(n - 1):
    nd = x[i + 1] - x[i]
    if nd == 0 or (i != 0 and d != nd):
        print('NO')
        break
    d = nd
else:
    print('YES')
0