結果

問題 No.406 鴨等間隔の法則
ユーザー Haruki0804SHaruki0804S
提出日時 2018-10-30 11:15:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 240 ms / 2,000 ms
コード長 345 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 19,304 KB
最終ジャッジ日時 2024-07-07 12:30:45
合計ジャッジ時間 4,070 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
14,020 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 100 ms
17,568 KB
testcase_05 AC 54 ms
13,196 KB
testcase_06 AC 55 ms
13,128 KB
testcase_07 AC 53 ms
13,396 KB
testcase_08 AC 92 ms
18,340 KB
testcase_09 AC 100 ms
18,884 KB
testcase_10 AC 60 ms
13,888 KB
testcase_11 AC 84 ms
16,580 KB
testcase_12 AC 66 ms
14,468 KB
testcase_13 AC 62 ms
14,344 KB
testcase_14 AC 200 ms
17,056 KB
testcase_15 AC 33 ms
11,008 KB
testcase_16 AC 33 ms
11,008 KB
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 33 ms
11,392 KB
testcase_19 AC 45 ms
11,264 KB
testcase_20 AC 51 ms
11,520 KB
testcase_21 AC 37 ms
11,648 KB
testcase_22 AC 71 ms
12,376 KB
testcase_23 AC 69 ms
14,604 KB
testcase_24 AC 178 ms
16,260 KB
testcase_25 AC 106 ms
18,300 KB
testcase_26 AC 239 ms
19,304 KB
testcase_27 AC 83 ms
19,300 KB
testcase_28 AC 85 ms
18,296 KB
testcase_29 AC 240 ms
19,296 KB
testcase_30 AC 235 ms
19,280 KB
testcase_31 AC 101 ms
18,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
X=input().split(' ')


for i in range(N):
    X[i]=int(X[i])




list.sort(X)


S=[]
for i in range(N-1):
    d=X[i+1]-X[i]
    S.append(d)
    S=list(set(S))#重複要素の削除
    if(len(S)!=1):
       print('NO')
       break
    elif(int(S[0])==0):
       print('NO')
       break
    elif(i==N-2):
       print('YES')




0