結果

問題 No.406 鴨等間隔の法則
ユーザー yohei-kuyohei-ku
提出日時 2018-03-28 00:19:52
言語 Python2
(2.7.18)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 295 bytes
コンパイル時間 524 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 26,760 KB
最終ジャッジ日時 2024-07-07 12:22:31
合計ジャッジ時間 3,932 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
13,444 KB
testcase_01 AC 11 ms
6,144 KB
testcase_02 AC 10 ms
6,144 KB
testcase_03 AC 10 ms
6,272 KB
testcase_04 AC 127 ms
21,000 KB
testcase_05 AC 52 ms
12,368 KB
testcase_06 AC 55 ms
12,728 KB
testcase_07 AC 56 ms
12,940 KB
testcase_08 AC 128 ms
21,008 KB
testcase_09 AC 145 ms
22,792 KB
testcase_10 AC 61 ms
13,304 KB
testcase_11 AC 107 ms
19,148 KB
testcase_12 AC 73 ms
14,996 KB
testcase_13 AC 69 ms
14,688 KB
testcase_14 AC 120 ms
22,740 KB
testcase_15 AC 15 ms
7,040 KB
testcase_16 AC 18 ms
8,064 KB
testcase_17 AC 14 ms
6,912 KB
testcase_18 AC 18 ms
8,192 KB
testcase_19 AC 22 ms
8,064 KB
testcase_20 AC 26 ms
8,832 KB
testcase_21 AC 26 ms
8,960 KB
testcase_22 AC 40 ms
12,520 KB
testcase_23 AC 82 ms
15,652 KB
testcase_24 AC 107 ms
19,104 KB
testcase_25 AC 139 ms
22,908 KB
testcase_26 AC 140 ms
26,760 KB
testcase_27 AC 107 ms
20,488 KB
testcase_28 AC 108 ms
22,784 KB
testcase_29 AC 141 ms
26,752 KB
testcase_30 AC 145 ms
26,432 KB
testcase_31 AC 140 ms
22,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
List = []
w = raw_input()
w_split = w.split()
for i in range(0,N):
    List.append(int(w_split[i]))
List.sort()

A = List
B = A[:]
LL =[]
for i in range(0,N-1):
    LL.append(abs(B[i]-A[i+1]))
if len(set(LL)) == 1 and len(List) == len(set(List)):
    print 'YES'
else:
    print 'NO'
0