結果

問題 No.406 鴨等間隔の法則
ユーザー Haruki0804SHaruki0804S
提出日時 2018-10-28 22:22:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 334 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,576 KB
最終ジャッジ日時 2024-11-19 07:23:56
合計ジャッジ時間 82,397 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 31 ms
17,568 KB
testcase_02 AC 31 ms
17,956 KB
testcase_03 AC 31 ms
24,208 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 698 ms
17,956 KB
testcase_16 AC 1,247 ms
23,680 KB
testcase_17 AC 344 ms
18,084 KB
testcase_18 AC 1,335 ms
18,720 KB
testcase_19 AC 1,901 ms
18,212 KB
testcase_20 TLE -
testcase_21 TLE -
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])

Y=[]
for i in range(N):
    Y.append(max(X))
    X.remove(max(X))


S=[]
for i in range(N-1):
    d=Y[i+1]-Y[i]
    S.append(d)

S=list(set(S))#重複要素の削除
if(len(S)!=1):
   print('NO')

elif(int(S[0])==0):
   print('NO')

else:
   print('YES')


0