結果

問題 No.1134 Deviation Score Ⅱ
ユーザー vwxyzvwxyz
提出日時 2022-09-06 18:58:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 298 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,172 KB
最終ジャッジ日時 2024-05-01 14:45:21
合計ジャッジ時間 3,194 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,752 KB
testcase_01 AC 68 ms
16,220 KB
testcase_02 AC 55 ms
14,464 KB
testcase_03 AC 61 ms
15,344 KB
testcase_04 AC 44 ms
12,800 KB
testcase_05 AC 65 ms
16,196 KB
testcase_06 AC 41 ms
12,160 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 36 ms
11,648 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 54 ms
14,336 KB
testcase_12 AC 53 ms
14,336 KB
testcase_13 AC 68 ms
16,876 KB
testcase_14 AC 54 ms
14,336 KB
testcase_15 AC 45 ms
13,056 KB
testcase_16 AC 37 ms
11,904 KB
testcase_17 AC 54 ms
14,208 KB
testcase_18 AC 55 ms
14,464 KB
testcase_19 AC 63 ms
15,692 KB
testcase_20 WA -
testcase_21 AC 60 ms
16,104 KB
testcase_22 AC 51 ms
12,140 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 30 ms
10,752 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