結果

問題 No.1134 Deviation Score Ⅱ
ユーザー lemonlemon
提出日時 2021-05-08 14:17:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 422 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,952 KB
最終ジャッジ日時 2024-09-16 18:43:29
合計ジャッジ時間 2,996 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 83 ms
16,232 KB
testcase_02 AC 68 ms
14,592 KB
testcase_03 AC 78 ms
15,560 KB
testcase_04 AC 51 ms
12,928 KB
testcase_05 AC 84 ms
16,204 KB
testcase_06 AC 44 ms
12,160 KB
testcase_07 AC 40 ms
11,904 KB
testcase_08 AC 76 ms
15,232 KB
testcase_09 AC 39 ms
11,648 KB
testcase_10 AC 32 ms
11,008 KB
testcase_11 AC 65 ms
14,080 KB
testcase_12 AC 64 ms
14,464 KB
testcase_13 AC 85 ms
16,880 KB
testcase_14 AC 66 ms
14,300 KB
testcase_15 AC 55 ms
13,184 KB
testcase_16 AC 41 ms
11,904 KB
testcase_17 AC 66 ms
14,208 KB
testcase_18 AC 67 ms
14,696 KB
testcase_19 AC 78 ms
15,700 KB
testcase_20 AC 57 ms
13,312 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 36 ms
11,520 KB
testcase_26 AC 93 ms
17,952 KB
testcase_27 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, math
 
sys.setrecursionlimit(10 ** 6)
stdin = sys.stdin

ni = lambda: int(ns())
na = lambda: list(map(int, stdin.readline().split()))
ns = lambda: stdin.readline().strip()
nsa = lambda: list(stdin.readline().split())
mod = 10 * 7 + 7

n = ni()
X = na()
m = ni()

ave = sum(X) / n
s2 = 0
for x in X:
    s2 += (abs(ave - x)) ** 2

s2 /= n
s = math.sqrt(s2)
ans = 50 + (X[m - 1] - ave) * 10 / s 

print(int(ans))
0