結果

問題 No.406 鴨等間隔の法則
ユーザー nebukuro09nebukuro09
提出日時 2016-09-09 09:39:41
言語 Python2
(2.7.18)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 142 bytes
コンパイル時間 548 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 14,928 KB
最終ジャッジ日時 2024-07-07 11:45:23
合計ジャッジ時間 3,193 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
9,620 KB
testcase_01 AC 10 ms
6,144 KB
testcase_02 AC 10 ms
6,272 KB
testcase_03 AC 10 ms
6,272 KB
testcase_04 AC 82 ms
14,016 KB
testcase_05 AC 35 ms
9,188 KB
testcase_06 AC 37 ms
9,296 KB
testcase_07 AC 38 ms
9,084 KB
testcase_08 AC 82 ms
13,832 KB
testcase_09 AC 89 ms
14,872 KB
testcase_10 AC 42 ms
9,692 KB
testcase_11 AC 71 ms
13,024 KB
testcase_12 AC 48 ms
10,496 KB
testcase_13 AC 46 ms
10,112 KB
testcase_14 AC 87 ms
13,452 KB
testcase_15 AC 14 ms
6,656 KB
testcase_16 AC 14 ms
6,784 KB
testcase_17 AC 12 ms
6,528 KB
testcase_18 AC 13 ms
6,912 KB
testcase_19 AC 16 ms
6,784 KB
testcase_20 AC 20 ms
7,296 KB
testcase_21 AC 18 ms
7,296 KB
testcase_22 AC 29 ms
8,164 KB
testcase_23 AC 50 ms
10,932 KB
testcase_24 AC 79 ms
12,632 KB
testcase_25 AC 86 ms
14,928 KB
testcase_26 AC 104 ms
14,796 KB
testcase_27 AC 74 ms
14,928 KB
testcase_28 AC 57 ms
14,924 KB
testcase_29 AC 109 ms
14,928 KB
testcase_30 AC 104 ms
14,832 KB
testcase_31 AC 86 ms
14,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()-1
x = sorted(map(int, raw_input().split()))
print 'YES' if all(x[i+1]-x[i]==x[1]-x[0] for i in xrange(N)) and x[1]!=x[0] else 'NO'
0