結果

問題 No.406 鴨等間隔の法則
ユーザー JunOnumaJunOnuma
提出日時 2017-06-08 15:37:48
言語 Python2
(2.7.18)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 202 bytes
コンパイル時間 509 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 14,992 KB
最終ジャッジ日時 2024-07-07 12:04:57
合計ジャッジ時間 3,007 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
9,636 KB
testcase_01 AC 9 ms
6,944 KB
testcase_02 AC 9 ms
6,944 KB
testcase_03 AC 9 ms
6,940 KB
testcase_04 AC 75 ms
14,080 KB
testcase_05 AC 31 ms
9,132 KB
testcase_06 AC 32 ms
9,240 KB
testcase_07 AC 33 ms
9,280 KB
testcase_08 AC 72 ms
14,024 KB
testcase_09 AC 82 ms
14,812 KB
testcase_10 AC 36 ms
9,636 KB
testcase_11 AC 62 ms
12,960 KB
testcase_12 AC 44 ms
10,420 KB
testcase_13 AC 42 ms
10,232 KB
testcase_14 AC 85 ms
13,260 KB
testcase_15 AC 12 ms
6,940 KB
testcase_16 AC 13 ms
6,940 KB
testcase_17 AC 11 ms
6,940 KB
testcase_18 AC 13 ms
6,940 KB
testcase_19 AC 17 ms
6,944 KB
testcase_20 AC 19 ms
7,168 KB
testcase_21 AC 17 ms
7,168 KB
testcase_22 AC 27 ms
8,064 KB
testcase_23 AC 45 ms
10,972 KB
testcase_24 AC 75 ms
12,444 KB
testcase_25 AC 79 ms
14,864 KB
testcase_26 AC 101 ms
14,864 KB
testcase_27 AC 54 ms
14,992 KB
testcase_28 AC 52 ms
14,868 KB
testcase_29 AC 102 ms
14,864 KB
testcase_30 AC 102 ms
14,644 KB
testcase_31 AC 77 ms
14,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(raw_input())
l = map(int, raw_input().split())
l.sort()
d = l[1] - l[0]
p = 2
while p < n:
    if d == 0 or l[p] - l[p-1] != d:
        print 'NO'
        break
    p += 1
else:
    print 'YES'
0