結果

問題 No.406 鴨等間隔の法則
ユーザー Meso MesoMeso Meso
提出日時 2024-05-08 11:06:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 299 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 23,876 KB
最終ジャッジ日時 2024-05-08 11:06:22
合計ジャッジ時間 4,860 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
16,428 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 35 ms
10,624 KB
testcase_04 AC 129 ms
22,752 KB
testcase_05 AC 65 ms
16,772 KB
testcase_06 AC 67 ms
16,012 KB
testcase_07 AC 68 ms
17,212 KB
testcase_08 AC 130 ms
23,112 KB
testcase_09 AC 138 ms
23,708 KB
testcase_10 AC 76 ms
16,636 KB
testcase_11 AC 115 ms
19,028 KB
testcase_12 AC 84 ms
17,728 KB
testcase_13 AC 78 ms
16,192 KB
testcase_14 AC 105 ms
22,572 KB
testcase_15 AC 34 ms
11,520 KB
testcase_16 AC 37 ms
12,160 KB
testcase_17 AC 33 ms
11,264 KB
testcase_18 AC 38 ms
12,160 KB
testcase_19 AC 36 ms
12,288 KB
testcase_20 AC 38 ms
12,544 KB
testcase_21 AC 42 ms
12,752 KB
testcase_22 AC 49 ms
15,632 KB
testcase_23 AC 86 ms
17,960 KB
testcase_24 AC 83 ms
18,556 KB
testcase_25 AC 133 ms
23,680 KB
testcase_26 AC 106 ms
23,708 KB
testcase_27 AC 66 ms
21,648 KB
testcase_28 AC 127 ms
23,600 KB
testcase_29 AC 113 ms
23,840 KB
testcase_30 AC 129 ms
23,876 KB
testcase_31 AC 126 ms
23,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

s = list(map(int, input().split()))
s = list(set(s))
s.sort()

if len(s) == 1:
    print('NO')
else:
    d = []
    for i in range(len(s)-1):
        diff = s[i+1] - s[i]
        d.append(diff)
    d = set(d)
    if len(d) == 1:
        print('YES')
    else:
        print('NO')  
0