結果

問題 No.1134 Deviation Score Ⅱ
ユーザー nohakai3nohakai3
提出日時 2022-07-20 13:27:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 155 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 10,664 KB
実行使用メモリ 16,508 KB
最終ジャッジ日時 2023-09-15 09:22:53
合計ジャッジ時間 3,820 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,220 KB
testcase_01 AC 113 ms
14,684 KB
testcase_02 AC 88 ms
12,832 KB
testcase_03 AC 104 ms
13,768 KB
testcase_04 AC 63 ms
11,588 KB
testcase_05 AC 115 ms
14,576 KB
testcase_06 AC 54 ms
10,880 KB
testcase_07 AC 48 ms
10,552 KB
testcase_08 AC 100 ms
13,540 KB
testcase_09 AC 46 ms
10,424 KB
testcase_10 AC 34 ms
10,212 KB
testcase_11 AC 87 ms
12,604 KB
testcase_12 AC 85 ms
12,160 KB
testcase_13 AC 121 ms
15,252 KB
testcase_14 AC 88 ms
12,528 KB
testcase_15 AC 70 ms
11,192 KB
testcase_16 AC 49 ms
10,540 KB
testcase_17 AC 86 ms
12,312 KB
testcase_18 AC 90 ms
12,756 KB
testcase_19 AC 106 ms
14,116 KB
testcase_20 AC 72 ms
11,424 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 41 ms
10,500 KB
testcase_26 AC 125 ms
16,508 KB
testcase_27 AC 33 ms
10,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
x=list(map(int,input().split()))
m=int(input())

from statistics import pstdev,mean
m-=1
ans=50+10*(x[m]-mean(x))/pstdev(x)

print(int(ans))
0