結果

問題 No.1134 Deviation Score Ⅱ
ユーザー 37zigen37zigen
提出日時 2020-08-03 16:34:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 250 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,040 KB
最終ジャッジ日時 2024-09-13 08:40:45
合計ジャッジ時間 3,561 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 80 ms
16,044 KB
testcase_02 AC 65 ms
14,544 KB
testcase_03 AC 72 ms
15,752 KB
testcase_04 AC 49 ms
12,916 KB
testcase_05 AC 82 ms
16,028 KB
testcase_06 AC 43 ms
12,032 KB
testcase_07 AC 40 ms
11,904 KB
testcase_08 AC 76 ms
15,316 KB
testcase_09 AC 37 ms
11,648 KB
testcase_10 AC 31 ms
11,008 KB
testcase_11 AC 66 ms
14,308 KB
testcase_12 AC 62 ms
14,296 KB
testcase_13 AC 86 ms
16,752 KB
testcase_14 AC 64 ms
14,284 KB
testcase_15 AC 52 ms
13,380 KB
testcase_16 AC 40 ms
11,776 KB
testcase_17 AC 62 ms
14,184 KB
testcase_18 AC 68 ms
14,576 KB
testcase_19 AC 76 ms
15,524 KB
testcase_20 AC 54 ms
13,312 KB
testcase_21 AC 74 ms
16,072 KB
testcase_22 AC 65 ms
14,116 KB
testcase_23 AC 30 ms
10,880 KB
testcase_24 AC 30 ms
10,624 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 30 ms
11,008 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)
if a==0:
    print(50)
    exit()
ans=(e-x[M])*10/a
if ans>e:
    ans=50+ans
else:
    ans=50-ans
print(int(ans))
0