結果

問題 No.406 鴨等間隔の法則
ユーザー RyutoRyuto
提出日時 2018-03-31 16:50:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 420 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 96,512 KB
最終ジャッジ日時 2024-07-07 12:22:45
合計ジャッジ時間 3,811 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
74,752 KB
testcase_01 AC 48 ms
53,376 KB
testcase_02 AC 46 ms
53,120 KB
testcase_03 AC 46 ms
53,120 KB
testcase_04 AC 91 ms
91,008 KB
testcase_05 AC 67 ms
71,296 KB
testcase_06 AC 67 ms
71,680 KB
testcase_07 AC 68 ms
73,088 KB
testcase_08 AC 92 ms
91,264 KB
testcase_09 AC 95 ms
94,592 KB
testcase_10 AC 71 ms
74,240 KB
testcase_11 AC 86 ms
87,296 KB
testcase_12 AC 74 ms
78,080 KB
testcase_13 AC 74 ms
77,440 KB
testcase_14 AC 104 ms
91,776 KB
testcase_15 AC 53 ms
60,544 KB
testcase_16 AC 56 ms
62,720 KB
testcase_17 AC 55 ms
61,824 KB
testcase_18 AC 55 ms
62,848 KB
testcase_19 AC 59 ms
63,616 KB
testcase_20 AC 61 ms
65,408 KB
testcase_21 AC 60 ms
64,640 KB
testcase_22 AC 67 ms
68,352 KB
testcase_23 AC 77 ms
79,488 KB
testcase_24 AC 98 ms
88,192 KB
testcase_25 AC 95 ms
94,336 KB
testcase_26 AC 112 ms
96,128 KB
testcase_27 AC 76 ms
78,592 KB
testcase_28 AC 95 ms
94,720 KB
testcase_29 AC 113 ms
96,512 KB
testcase_30 AC 113 ms
96,128 KB
testcase_31 AC 95 ms
94,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python

from collections import Counter

def main():
    n = int(input().strip())
    xs = [int(x) for x in input().split()]
    xv = Counter(xs).values()
    if max(xv) > 1:
        print('NO')
        exit()
    xs.sort()
    dx = xs[1] - xs[0]
    for i in range(1,n):
        if xs[i] - xs[i-1] != dx:
            print('NO')
            exit()
    print('YES')

if __name__ == '__main__':
    main()
0