結果

問題 No.406 鴨等間隔の法則
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-08-03 17:23:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 903 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 84,772 KB
最終ジャッジ日時 2024-07-07 11:16:49
合計ジャッジ時間 3,001 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
68,224 KB
testcase_01 AC 31 ms
51,840 KB
testcase_02 AC 32 ms
52,096 KB
testcase_03 AC 31 ms
52,352 KB
testcase_04 AC 50 ms
79,616 KB
testcase_05 AC 41 ms
66,432 KB
testcase_06 AC 39 ms
66,432 KB
testcase_07 AC 41 ms
67,456 KB
testcase_08 AC 51 ms
79,616 KB
testcase_09 AC 52 ms
81,536 KB
testcase_10 AC 41 ms
68,224 KB
testcase_11 AC 47 ms
76,928 KB
testcase_12 AC 43 ms
70,104 KB
testcase_13 AC 42 ms
69,504 KB
testcase_14 AC 54 ms
81,280 KB
testcase_15 AC 33 ms
59,520 KB
testcase_16 AC 37 ms
59,648 KB
testcase_17 AC 37 ms
58,624 KB
testcase_18 AC 37 ms
60,032 KB
testcase_19 AC 41 ms
61,824 KB
testcase_20 AC 41 ms
62,464 KB
testcase_21 AC 35 ms
61,184 KB
testcase_22 AC 40 ms
64,768 KB
testcase_23 AC 42 ms
71,168 KB
testcase_24 AC 52 ms
78,080 KB
testcase_25 AC 52 ms
83,764 KB
testcase_26 AC 57 ms
84,772 KB
testcase_27 AC 52 ms
82,808 KB
testcase_28 AC 58 ms
82,556 KB
testcase_29 AC 67 ms
84,480 KB
testcase_30 AC 64 ms
84,608 KB
testcase_31 AC 58 ms
80,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env pypy3
# btkさんのO(N)解 http://yukicoder.me/submissions/108107 を踏まえて


def validate(n, xs):
    x_max = max(xs)
    x_min = min(xs)
    # 数列の「幅」を求める
    l = x_max - x_min
    # 「間の数」はN - 1個
    # lがこれで割り切れない or lが0ならば不適
    d, m = divmod(l, n - 1)
    if m > 0 or l == 0:
        return False
    # ソート済みの列は y_i = y_0 + i dと表される
    # ここでy_0 = x_min
    # x_iの各要素がその一つ一つに対応している必要がある
    counter = [0 for _ in range(n)]
    for x in xs:
        i, m = divmod(x - x_min, d)
        if m > 0:
            return False
        counter[i] += 1
    return n == sum(counter)


def main():
    n = int(input())
    xs = list(map(int, input().split()))
    print("YES" if validate(n, xs) else "NO")


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