結果

問題 No.1134 Deviation Score Ⅱ
ユーザー pluto77pluto77
提出日時 2020-07-29 10:33:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 211 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,896 KB
最終ジャッジ日時 2024-06-28 21:31:52
合計ジャッジ時間 2,218 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,752 KB
testcase_01 AC 69 ms
16,280 KB
testcase_02 AC 61 ms
14,520 KB
testcase_03 AC 67 ms
15,732 KB
testcase_04 AC 43 ms
12,896 KB
testcase_05 AC 68 ms
16,136 KB
testcase_06 AC 37 ms
12,160 KB
testcase_07 AC 35 ms
11,904 KB
testcase_08 AC 62 ms
15,416 KB
testcase_09 AC 33 ms
11,776 KB
testcase_10 AC 27 ms
10,880 KB
testcase_11 AC 57 ms
14,080 KB
testcase_12 AC 55 ms
14,336 KB
testcase_13 AC 72 ms
16,984 KB
testcase_14 AC 53 ms
14,336 KB
testcase_15 AC 45 ms
13,232 KB
testcase_16 AC 35 ms
11,904 KB
testcase_17 AC 54 ms
14,292 KB
testcase_18 AC 56 ms
14,684 KB
testcase_19 AC 64 ms
15,504 KB
testcase_20 AC 46 ms
13,300 KB
testcase_21 AC 64 ms
15,924 KB
testcase_22 AC 56 ms
14,164 KB
testcase_23 AC 26 ms
10,752 KB
testcase_24 AC 24 ms
10,752 KB
testcase_25 AC 30 ms
11,392 KB
testcase_26 AC 75 ms
17,896 KB
testcase_27 AC 28 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1134
from math import *
n=int(input())
l=list(map(int,input().split()))
m=int(input())-1
s=sum(l)/n
a=[(s-l[i])**2 for i in range(n)]
x=sqrt(sum(a)/n)
if x>0:
 print(int((l[m]-s)*10/x+50))
else:
 print(50)
0