結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 79 ms
16,028 KB
testcase_02 AC 59 ms
14,648 KB
testcase_03 AC 71 ms
15,608 KB
testcase_04 AC 45 ms
12,896 KB
testcase_05 AC 76 ms
16,140 KB
testcase_06 AC 39 ms
12,032 KB
testcase_07 AC 35 ms
11,776 KB
testcase_08 AC 65 ms
15,176 KB
testcase_09 AC 35 ms
11,648 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 59 ms
14,336 KB
testcase_12 AC 57 ms
14,208 KB
testcase_13 AC 79 ms
16,724 KB
testcase_14 AC 58 ms
14,408 KB
testcase_15 AC 47 ms
13,104 KB
testcase_16 AC 36 ms
11,904 KB
testcase_17 AC 57 ms
14,296 KB
testcase_18 AC 60 ms
14,684 KB
testcase_19 AC 69 ms
15,640 KB
testcase_20 AC 50 ms
13,300 KB
testcase_21 AC 66 ms
15,800 KB
testcase_22 AC 63 ms
14,172 KB
testcase_23 AC 27 ms
10,624 KB
testcase_24 AC 28 ms
10,752 KB
testcase_25 AC 34 ms
11,520 KB
testcase_26 AC 86 ms
17,896 KB
testcase_27 AC 26 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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