結果

問題 No.1134 Deviation Score Ⅱ
ユーザー vwxyzvwxyz
提出日時 2022-09-06 18:59:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 297 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 17,044 KB
最終ジャッジ日時 2024-11-21 19:37:35
合計ジャッジ時間 2,781 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,880 KB
testcase_01 AC 76 ms
16,212 KB
testcase_02 AC 60 ms
14,464 KB
testcase_03 AC 67 ms
15,464 KB
testcase_04 AC 46 ms
12,800 KB
testcase_05 AC 73 ms
16,196 KB
testcase_06 AC 40 ms
12,160 KB
testcase_07 AC 39 ms
11,904 KB
testcase_08 AC 66 ms
15,352 KB
testcase_09 AC 39 ms
11,648 KB
testcase_10 AC 32 ms
10,880 KB
testcase_11 AC 59 ms
14,336 KB
testcase_12 AC 58 ms
14,464 KB
testcase_13 AC 77 ms
16,876 KB
testcase_14 AC 59 ms
14,336 KB
testcase_15 AC 50 ms
13,184 KB
testcase_16 AC 40 ms
11,904 KB
testcase_17 AC 57 ms
14,080 KB
testcase_18 AC 61 ms
14,464 KB
testcase_19 AC 68 ms
15,816 KB
testcase_20 AC 51 ms
13,312 KB
testcase_21 AC 65 ms
16,104 KB
testcase_22 AC 57 ms
12,012 KB
testcase_23 AC 31 ms
10,752 KB
testcase_24 AC 30 ms
10,880 KB
testcase_25 AC 36 ms
11,392 KB
testcase_26 AC 77 ms
17,044 KB
testcase_27 AC 30 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline
write=sys.stdout.write
from math import gcd as GCD
import math

N=int(readline())
X=list(map(int,readline().split()))
m=sum(X)/N
s=math.sqrt(sum((x-m)**2 for x in X)/N)
M=int(readline())
M-=1
if s==0:
    ans=50
else:
    ans=int((X[M]-m)*10/s+50)
print(ans)
0