結果

問題 No.406 鴨等間隔の法則
ユーザー JunOnumaJunOnuma
提出日時 2017-06-08 15:36:50
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 192 bytes
コンパイル時間 615 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 14,868 KB
最終ジャッジ日時 2024-11-07 10:34:26
合計ジャッジ時間 3,532 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
9,512 KB
testcase_01 AC 11 ms
6,272 KB
testcase_02 AC 11 ms
6,144 KB
testcase_03 WA -
testcase_04 AC 85 ms
14,080 KB
testcase_05 AC 37 ms
9,000 KB
testcase_06 AC 39 ms
9,240 KB
testcase_07 AC 39 ms
9,404 KB
testcase_08 AC 83 ms
13,896 KB
testcase_09 AC 95 ms
14,812 KB
testcase_10 AC 42 ms
9,756 KB
testcase_11 AC 73 ms
12,964 KB
testcase_12 AC 51 ms
10,436 KB
testcase_13 AC 48 ms
10,228 KB
testcase_14 AC 97 ms
13,388 KB
testcase_15 WA -
testcase_16 AC 16 ms
6,784 KB
testcase_17 AC 13 ms
6,528 KB
testcase_18 AC 15 ms
6,784 KB
testcase_19 AC 19 ms
7,040 KB
testcase_20 AC 23 ms
7,168 KB
testcase_21 AC 20 ms
7,296 KB
testcase_22 AC 32 ms
7,936 KB
testcase_23 AC 53 ms
10,772 KB
testcase_24 AC 85 ms
12,448 KB
testcase_25 AC 94 ms
14,864 KB
testcase_26 AC 117 ms
14,864 KB
testcase_27 WA -
testcase_28 AC 61 ms
14,736 KB
testcase_29 AC 116 ms
14,736 KB
testcase_30 AC 116 ms
14,772 KB
testcase_31 AC 89 ms
14,532 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 l[p] - l[p-1] != d:
        print 'NO'
        break
    p += 1
else:
    print 'YES'
0