結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 72 ms
16,088 KB
testcase_02 AC 60 ms
14,464 KB
testcase_03 AC 67 ms
15,340 KB
testcase_04 AC 47 ms
12,800 KB
testcase_05 AC 71 ms
16,192 KB
testcase_06 AC 41 ms
12,032 KB
testcase_07 AC 39 ms
11,776 KB
testcase_08 AC 65 ms
15,224 KB
testcase_09 AC 37 ms
11,520 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 60 ms
14,208 KB
testcase_12 AC 57 ms
14,336 KB
testcase_13 AC 75 ms
16,876 KB
testcase_14 AC 59 ms
14,336 KB
testcase_15 AC 49 ms
13,056 KB
testcase_16 AC 39 ms
11,904 KB
testcase_17 AC 58 ms
14,208 KB
testcase_18 AC 60 ms
14,464 KB
testcase_19 AC 67 ms
15,820 KB
testcase_20 AC 50 ms
13,184 KB
testcase_21 AC 67 ms
16,104 KB
testcase_22 AC 57 ms
11,904 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 35 ms
11,392 KB
testcase_26 AC 78 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