結果

問題 No.406 鴨等間隔の法則
ユーザー MitI_7MitI_7
提出日時 2016-09-17 11:10:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 217 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 24,060 KB
最終ジャッジ日時 2024-07-07 11:48:22
合計ジャッジ時間 3,140 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
16,780 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 82 ms
22,528 KB
testcase_05 AC 45 ms
16,900 KB
testcase_06 AC 48 ms
15,844 KB
testcase_07 AC 45 ms
17,056 KB
testcase_08 AC 80 ms
22,588 KB
testcase_09 AC 85 ms
23,728 KB
testcase_10 AC 49 ms
16,656 KB
testcase_11 AC 70 ms
18,896 KB
testcase_12 AC 52 ms
17,308 KB
testcase_13 AC 51 ms
16,320 KB
testcase_14 AC 89 ms
22,996 KB
testcase_15 AC 27 ms
11,392 KB
testcase_16 AC 31 ms
12,032 KB
testcase_17 AC 30 ms
11,136 KB
testcase_18 AC 33 ms
12,160 KB
testcase_19 AC 33 ms
12,160 KB
testcase_20 AC 36 ms
12,672 KB
testcase_21 AC 36 ms
12,620 KB
testcase_22 AC 40 ms
15,632 KB
testcase_23 AC 56 ms
17,784 KB
testcase_24 AC 72 ms
18,556 KB
testcase_25 AC 85 ms
23,896 KB
testcase_26 AC 97 ms
24,060 KB
testcase_27 AC 61 ms
21,524 KB
testcase_28 AC 65 ms
23,948 KB
testcase_29 AC 97 ms
23,992 KB
testcase_30 AC 107 ms
23,760 KB
testcase_31 AC 84 ms
23,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
x = sorted(list(map(int, input().split())))

if len(set(x)) != n:
    print("NO")
else:
    if len(set([abs(i - j) for i, j in zip(x, x[1:])])) != 1:
        print("NO")
    else:
        print("YES")
0