結果

問題 No.1134 Deviation Score Ⅱ
ユーザー 37zigen37zigen
提出日時 2020-07-28 15:09:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 216 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 17,692 KB
最終ジャッジ日時 2024-06-28 21:13:01
合計ジャッジ時間 2,248 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 74 ms
16,172 KB
testcase_02 AC 66 ms
14,420 KB
testcase_03 AC 66 ms
15,424 KB
testcase_04 AC 42 ms
12,800 KB
testcase_05 AC 73 ms
16,152 KB
testcase_06 AC 38 ms
12,160 KB
testcase_07 AC 34 ms
11,904 KB
testcase_08 AC 63 ms
15,444 KB
testcase_09 AC 33 ms
11,776 KB
testcase_10 AC 27 ms
10,880 KB
testcase_11 AC 57 ms
14,312 KB
testcase_12 AC 57 ms
14,056 KB
testcase_13 AC 76 ms
16,568 KB
testcase_14 AC 57 ms
14,312 KB
testcase_15 AC 48 ms
13,256 KB
testcase_16 AC 34 ms
12,032 KB
testcase_17 AC 54 ms
14,308 KB
testcase_18 AC 55 ms
14,520 KB
testcase_19 AC 66 ms
15,652 KB
testcase_20 AC 49 ms
13,312 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 28 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N=int(input())
x=[int(x) for x in input().split()]
M=int(input())-1
e=sum(x)/N
y=[(v-e)**2 for v in x]
a=math.sqrt(sum(y)/N)
ans=(e-x[M])*10/a
if ans>e:
    ans=50+ans
else:
    ans=50-ans
print(int(ans))
0