結果

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

ソースコード

diff #

N=int(input())
x=[*map(int, input().split())]
M=int(input())
a=sum(x)/N
m=(sum([(b-a)**2 for b in x])/N)**0.5 
print(50 if m==0 else int((x[M-1]-a)*10/m)+50)
0