結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 83 ms
16,300 KB
testcase_02 AC 64 ms
14,800 KB
testcase_03 AC 74 ms
15,692 KB
testcase_04 AC 50 ms
12,912 KB
testcase_05 AC 81 ms
16,156 KB
testcase_06 AC 43 ms
12,160 KB
testcase_07 AC 40 ms
11,904 KB
testcase_08 AC 74 ms
15,316 KB
testcase_09 AC 39 ms
11,648 KB
testcase_10 AC 31 ms
11,008 KB
testcase_11 AC 63 ms
14,312 KB
testcase_12 AC 63 ms
14,424 KB
testcase_13 AC 85 ms
16,880 KB
testcase_14 AC 65 ms
14,280 KB
testcase_15 AC 54 ms
13,256 KB
testcase_16 AC 42 ms
11,904 KB
testcase_17 AC 64 ms
14,316 KB
testcase_18 AC 65 ms
14,704 KB
testcase_19 AC 78 ms
15,648 KB
testcase_20 AC 55 ms
13,312 KB
testcase_21 AC 74 ms
15,948 KB
testcase_22 AC 66 ms
14,312 KB
testcase_23 AC 32 ms
10,752 KB
testcase_24 AC 30 ms
10,880 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 29 ms
10,752 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