結果

問題 No.1134 Deviation Score Ⅱ
ユーザー rythem00359
提出日時 2020-08-13 09:41:27
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 204 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 46,480 KB
最終ジャッジ日時 2024-10-09 19:04:43
合計ジャッジ時間 19,097 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 23 RE * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import numpy
N=int(input())
x=numpy.array([*map(int, input().split())])
M=int(input())
mae=0
ave=numpy.mean(x)
for i in x:
    mae+=pow(ave-i,2)/N
print(int((x[M-1]-ave)*10/math.sqrt(mae)+50))
0