結果

問題 No.406 鴨等間隔の法則
ユーザー notsix4notsix4
提出日時 2021-12-03 19:38:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 253 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 23,860 KB
最終ジャッジ日時 2024-07-06 01:58:13
合計ジャッジ時間 4,155 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
17,004 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 82 ms
22,628 KB
testcase_05 AC 54 ms
16,896 KB
testcase_06 AC 52 ms
16,268 KB
testcase_07 AC 50 ms
17,212 KB
testcase_08 AC 82 ms
22,956 KB
testcase_09 AC 88 ms
23,348 KB
testcase_10 AC 53 ms
17,000 KB
testcase_11 AC 71 ms
18,952 KB
testcase_12 AC 59 ms
17,712 KB
testcase_13 AC 56 ms
16,188 KB
testcase_14 AC 113 ms
22,676 KB
testcase_15 AC 33 ms
11,264 KB
testcase_16 AC 35 ms
12,032 KB
testcase_17 AC 32 ms
11,264 KB
testcase_18 AC 36 ms
12,160 KB
testcase_19 AC 37 ms
12,288 KB
testcase_20 AC 40 ms
12,672 KB
testcase_21 AC 38 ms
12,672 KB
testcase_22 AC 50 ms
15,508 KB
testcase_23 AC 59 ms
17,988 KB
testcase_24 AC 89 ms
18,744 KB
testcase_25 AC 87 ms
23,532 KB
testcase_26 AC 118 ms
23,860 KB
testcase_27 AC 74 ms
21,664 KB
testcase_28 AC 87 ms
23,520 KB
testcase_29 AC 126 ms
23,860 KB
testcase_30 AC 122 ms
23,596 KB
testcase_31 AC 87 ms
23,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
l=[int(x) for x in input().split()]
nl=list(set(l))
c="YES"
if len(nl)==len(l):
    nl.sort()
    a=(nl[-1]-nl[0])/(n-1)

    for i in range(n-1):
        if nl[i+1]-nl[i]!=a:
            c="NO"
            break
else:
    c="NO"
print(c)
0