結果

問題 No.1134 Deviation Score Ⅱ
ユーザー brthyyjpbrthyyjp
提出日時 2020-10-17 09:08:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 252 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 80,768 KB
最終ジャッジ日時 2024-07-21 01:49:59
合計ジャッジ時間 2,786 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 67 ms
77,696 KB
testcase_02 AC 60 ms
72,576 KB
testcase_03 AC 63 ms
75,904 KB
testcase_04 AC 54 ms
66,560 KB
testcase_05 AC 71 ms
77,824 KB
testcase_06 AC 52 ms
64,512 KB
testcase_07 AC 51 ms
63,104 KB
testcase_08 AC 63 ms
75,648 KB
testcase_09 AC 50 ms
62,592 KB
testcase_10 AC 47 ms
59,776 KB
testcase_11 AC 64 ms
72,064 KB
testcase_12 AC 59 ms
71,040 KB
testcase_13 AC 68 ms
80,000 KB
testcase_14 AC 61 ms
72,448 KB
testcase_15 AC 51 ms
67,840 KB
testcase_16 AC 47 ms
63,360 KB
testcase_17 AC 53 ms
71,168 KB
testcase_18 AC 55 ms
72,576 KB
testcase_19 AC 57 ms
75,904 KB
testcase_20 AC 51 ms
68,608 KB
testcase_21 AC 57 ms
75,776 KB
testcase_22 AC 55 ms
75,136 KB
testcase_23 AC 38 ms
52,352 KB
testcase_24 AC 41 ms
52,096 KB
testcase_25 AC 48 ms
61,696 KB
testcase_26 AC 66 ms
80,768 KB
testcase_27 AC 41 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
X = list(map(int, input().split()))
m = int(input())
m -= 1

e = sum(X)/n
import math
t = 0
for x in X:
    t += (x-e)**2
t /= n
t = math.sqrt(t)
if abs(t) <= 10**(-6):
    print(50)
    exit()

d = (X[m]-e)*10
d /= t
print(int(50+d))
0