結果

問題 No.406 鴨等間隔の法則
ユーザー roiti46roiti46
提出日時 2016-10-10 20:44:36
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 269 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 16,812 KB
最終ジャッジ日時 2024-11-07 06:23:32
合計ジャッジ時間 4,423 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
11,452 KB
testcase_01 AC 23 ms
8,064 KB
testcase_02 AC 23 ms
8,192 KB
testcase_03 WA -
testcase_04 AC 114 ms
15,896 KB
testcase_05 AC 55 ms
10,944 KB
testcase_06 AC 58 ms
11,052 KB
testcase_07 AC 59 ms
11,212 KB
testcase_08 AC 111 ms
15,836 KB
testcase_09 AC 123 ms
16,628 KB
testcase_10 AC 62 ms
11,572 KB
testcase_11 AC 100 ms
14,900 KB
testcase_12 AC 73 ms
12,504 KB
testcase_13 AC 69 ms
12,172 KB
testcase_14 AC 104 ms
15,332 KB
testcase_15 WA -
testcase_16 AC 28 ms
9,344 KB
testcase_17 AC 26 ms
8,576 KB
testcase_18 AC 27 ms
9,212 KB
testcase_19 AC 30 ms
8,832 KB
testcase_20 AC 34 ms
9,088 KB
testcase_21 AC 35 ms
9,400 KB
testcase_22 AC 42 ms
9,856 KB
testcase_23 AC 75 ms
12,816 KB
testcase_24 AC 91 ms
14,388 KB
testcase_25 AC 124 ms
16,680 KB
testcase_26 AC 120 ms
16,680 KB
testcase_27 WA -
testcase_28 AC 87 ms
16,708 KB
testcase_29 AC 116 ms
16,812 KB
testcase_30 AC 119 ms
16,672 KB
testcase_31 AC 118 ms
16,292 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[i + 1] - x[i] for i in xrange(N - 1)))) == 1:
    print "YES"
else:
    print "NO"

0