結果

問題 No.406 鴨等間隔の法則
ユーザー ymgckyoymgckyo
提出日時 2017-10-31 06:25:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 610 ms
コンパイル使用メモリ 10,580 KB
実行使用メモリ 18,948 KB
最終ジャッジ日時 2023-09-21 18:40:05
合計ジャッジ時間 2,848 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
12,504 KB
testcase_01 AC 15 ms
7,808 KB
testcase_02 AC 16 ms
7,856 KB
testcase_03 AC 14 ms
7,928 KB
testcase_04 AC 61 ms
17,928 KB
testcase_05 AC 31 ms
11,792 KB
testcase_06 AC 31 ms
11,944 KB
testcase_07 AC 32 ms
11,988 KB
testcase_08 AC 61 ms
18,400 KB
testcase_09 AC 66 ms
18,812 KB
testcase_10 AC 35 ms
12,452 KB
testcase_11 AC 53 ms
16,528 KB
testcase_12 AC 40 ms
13,496 KB
testcase_13 AC 37 ms
12,976 KB
testcase_14 AC 76 ms
17,180 KB
testcase_15 AC 17 ms
8,844 KB
testcase_16 AC 18 ms
8,968 KB
testcase_17 AC 17 ms
8,532 KB
testcase_18 AC 18 ms
8,676 KB
testcase_19 AC 21 ms
8,996 KB
testcase_20 AC 22 ms
9,456 KB
testcase_21 AC 20 ms
9,336 KB
testcase_22 AC 30 ms
10,416 KB
testcase_23 AC 41 ms
13,872 KB
testcase_24 AC 67 ms
15,884 KB
testcase_25 AC 67 ms
18,876 KB
testcase_26 AC 89 ms
18,808 KB
testcase_27 AC 47 ms
18,836 KB
testcase_28 AC 47 ms
18,948 KB
testcase_29 AC 88 ms
18,792 KB
testcase_30 AC 86 ms
18,876 KB
testcase_31 AC 65 ms
18,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = input()
ls = list(map(int, input().split()))
ls.sort()

dif = ls[2] - ls[1]

if dif == 0:
    print('NO')
else:
    for i in range(2, len(ls) - 1):
        if ls[i + 1] - ls[i] != dif:
            print('NO')
            break
    else:
        print('YES')
0