結果

問題 No.406 鴨等間隔の法則
ユーザー AREIDO2AREIDO2
提出日時 2016-08-29 11:45:43
言語 Python2
(2.7.18)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 269 bytes
コンパイル時間 520 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 14,868 KB
最終ジャッジ日時 2024-07-07 11:40:05
合計ジャッジ時間 3,477 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
9,512 KB
testcase_01 AC 11 ms
6,144 KB
testcase_02 AC 11 ms
6,016 KB
testcase_03 AC 11 ms
6,144 KB
testcase_04 AC 123 ms
14,080 KB
testcase_05 AC 48 ms
8,876 KB
testcase_06 AC 51 ms
9,240 KB
testcase_07 AC 53 ms
9,276 KB
testcase_08 AC 122 ms
13,960 KB
testcase_09 AC 138 ms
14,808 KB
testcase_10 AC 60 ms
9,376 KB
testcase_11 AC 105 ms
12,880 KB
testcase_12 AC 71 ms
10,432 KB
testcase_13 AC 66 ms
10,228 KB
testcase_14 AC 108 ms
13,388 KB
testcase_15 AC 15 ms
6,528 KB
testcase_16 AC 18 ms
6,728 KB
testcase_17 AC 14 ms
6,528 KB
testcase_18 AC 17 ms
6,656 KB
testcase_19 AC 20 ms
6,916 KB
testcase_20 AC 23 ms
7,040 KB
testcase_21 AC 24 ms
7,296 KB
testcase_22 AC 34 ms
7,808 KB
testcase_23 AC 74 ms
10,872 KB
testcase_24 AC 95 ms
12,188 KB
testcase_25 AC 133 ms
14,868 KB
testcase_26 AC 131 ms
14,740 KB
testcase_27 AC 87 ms
14,736 KB
testcase_28 AC 93 ms
14,744 KB
testcase_29 AC 133 ms
14,868 KB
testcase_30 AC 131 ms
14,588 KB
testcase_31 AC 129 ms
14,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python
#coding:UTF-8

N = int(raw_input())
x1 = map(int,raw_input().split())

x2 = sorted(x1)
calc = x2[1] - x2[0]
judge = "YES"

for I in range(2,N):
     calc2 = x2[I] - x2[I - 1]
     if calc2 == 0 or calc != calc2:
          judge = "NO"

print judge
0