結果

問題 No.406 鴨等間隔の法則
ユーザー roiti46roiti46
提出日時 2016-10-10 20:45:33
言語 Python2
(2.7.18)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 290 bytes
コンパイル時間 653 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 18,864 KB
最終ジャッジ日時 2024-07-07 11:51:01
合計ジャッジ時間 4,015 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
12,484 KB
testcase_01 AC 20 ms
8,192 KB
testcase_02 AC 20 ms
8,192 KB
testcase_03 AC 20 ms
8,192 KB
testcase_04 AC 98 ms
18,432 KB
testcase_05 AC 48 ms
12,396 KB
testcase_06 AC 47 ms
12,272 KB
testcase_07 AC 49 ms
12,352 KB
testcase_08 AC 94 ms
18,404 KB
testcase_09 AC 101 ms
18,836 KB
testcase_10 AC 51 ms
12,664 KB
testcase_11 AC 81 ms
14,772 KB
testcase_12 AC 58 ms
13,052 KB
testcase_13 AC 56 ms
12,936 KB
testcase_14 AC 95 ms
15,328 KB
testcase_15 AC 22 ms
8,448 KB
testcase_16 AC 26 ms
9,228 KB
testcase_17 AC 22 ms
8,576 KB
testcase_18 AC 24 ms
9,396 KB
testcase_19 AC 26 ms
9,344 KB
testcase_20 AC 31 ms
9,504 KB
testcase_21 AC 31 ms
9,532 KB
testcase_22 AC 41 ms
11,960 KB
testcase_23 AC 62 ms
13,156 KB
testcase_24 AC 86 ms
14,384 KB
testcase_25 AC 107 ms
18,736 KB
testcase_26 AC 109 ms
18,864 KB
testcase_27 AC 65 ms
16,804 KB
testcase_28 AC 80 ms
18,740 KB
testcase_29 AC 114 ms
18,864 KB
testcase_30 AC 108 ms
18,684 KB
testcase_31 AC 100 ms
18,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
import sys,copy,math,heapq,itertools as it,fractions,re,bisect,collections as coll

N = int(raw_input())
x = sorted(map(int, raw_input().split()))
if len(set(x)) == N and len(set((x[i + 1] - x[i] for i in xrange(N - 1)))) == 1:
    print "YES"
else:
    print "NO"

0