結果

問題 No.406 鴨等間隔の法則
ユーザー yumechiyumechi
提出日時 2016-08-22 23:36:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 397 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 92,544 KB
最終ジャッジ日時 2024-07-07 11:40:30
合計ジャッジ時間 3,673 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
72,064 KB
testcase_01 AC 40 ms
51,456 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 42 ms
51,328 KB
testcase_04 AC 87 ms
88,832 KB
testcase_05 AC 59 ms
68,992 KB
testcase_06 AC 56 ms
69,248 KB
testcase_07 AC 59 ms
70,144 KB
testcase_08 AC 86 ms
88,832 KB
testcase_09 AC 90 ms
92,288 KB
testcase_10 AC 60 ms
72,064 KB
testcase_11 AC 81 ms
85,120 KB
testcase_12 AC 66 ms
75,136 KB
testcase_13 AC 65 ms
75,136 KB
testcase_14 AC 84 ms
88,192 KB
testcase_15 AC 42 ms
58,624 KB
testcase_16 AC 44 ms
59,648 KB
testcase_17 AC 44 ms
59,008 KB
testcase_18 AC 44 ms
59,904 KB
testcase_19 AC 46 ms
61,160 KB
testcase_20 AC 48 ms
62,080 KB
testcase_21 AC 48 ms
61,952 KB
testcase_22 AC 53 ms
65,408 KB
testcase_23 AC 73 ms
77,060 KB
testcase_24 AC 84 ms
84,992 KB
testcase_25 AC 97 ms
91,944 KB
testcase_26 AC 91 ms
92,544 KB
testcase_27 AC 60 ms
75,904 KB
testcase_28 AC 76 ms
92,416 KB
testcase_29 AC 93 ms
92,160 KB
testcase_30 AC 92 ms
92,416 KB
testcase_31 AC 92 ms
91,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    n = int(input())
    xl = sorted([int(i) for i in input().split()])

    # condition 1
    if len(set(xl)) != n:
        print("NO")
        return

    #condition 2
    diff = abs(xl[0] - xl[1])
    for idx in range(1, n):
        if diff != abs(xl[idx-1] - xl[idx]):
            print("NO")
            return
    else:
        print("YES")

if __name__=="__main__":
    solve()
0