結果

問題 No.406 鴨等間隔の法則
ユーザー Haruki0804SHaruki0804S
提出日時 2018-10-30 11:09:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 366 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 31,188 KB
最終ジャッジ日時 2024-11-19 10:31:29
合計ジャッジ時間 73,205 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 31 ms
16,128 KB
testcase_02 AC 30 ms
16,000 KB
testcase_03 AC 31 ms
15,872 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 152 ms
16,512 KB
testcase_16 AC 233 ms
26,288 KB
testcase_17 AC 82 ms
16,256 KB
testcase_18 AC 267 ms
16,768 KB
testcase_19 AC 356 ms
16,640 KB
testcase_20 AC 708 ms
30,076 KB
testcase_21 AC 721 ms
16,896 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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


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


for i in range(N):
    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