結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
16,672 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 AC 123 ms
22,648 KB
testcase_05 AC 61 ms
16,900 KB
testcase_06 AC 65 ms
16,264 KB
testcase_07 AC 69 ms
17,208 KB
testcase_08 AC 124 ms
23,268 KB
testcase_09 AC 134 ms
23,488 KB
testcase_10 AC 71 ms
16,608 KB
testcase_11 AC 106 ms
19,024 KB
testcase_12 AC 79 ms
17,708 KB
testcase_13 AC 75 ms
17,308 KB
testcase_14 AC 101 ms
22,868 KB
testcase_15 AC 28 ms
11,520 KB
testcase_16 AC 35 ms
12,160 KB
testcase_17 AC 31 ms
11,264 KB
testcase_18 AC 36 ms
12,288 KB
testcase_19 AC 33 ms
12,288 KB
testcase_20 AC 38 ms
12,672 KB
testcase_21 AC 40 ms
12,756 KB
testcase_22 AC 46 ms
15,636 KB
testcase_23 AC 83 ms
17,956 KB
testcase_24 AC 78 ms
18,688 KB
testcase_25 AC 130 ms
23,584 KB
testcase_26 AC 106 ms
23,832 KB
testcase_27 AC 65 ms
21,648 KB
testcase_28 AC 130 ms
23,640 KB
testcase_29 AC 113 ms
23,792 KB
testcase_30 AC 113 ms
23,748 KB
testcase_31 AC 128 ms
23,248 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