結果

問題 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
コンパイル時間 182 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 17,484 KB
最終ジャッジ日時 2024-07-02 13:24:57
合計ジャッジ時間 4,809 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
13,568 KB
testcase_01 AC 146 ms
16,000 KB
testcase_02 AC 120 ms
14,372 KB
testcase_03 AC 133 ms
15,584 KB
testcase_04 AC 86 ms
13,908 KB
testcase_05 AC 145 ms
15,720 KB
testcase_06 AC 74 ms
14,188 KB
testcase_07 AC 68 ms
13,824 KB
testcase_08 AC 129 ms
15,008 KB
testcase_09 AC 65 ms
13,696 KB
testcase_10 AC 52 ms
13,568 KB
testcase_11 AC 114 ms
14,112 KB
testcase_12 AC 111 ms
14,280 KB
testcase_13 AC 154 ms
16,448 KB
testcase_14 AC 114 ms
14,928 KB
testcase_15 AC 92 ms
14,016 KB
testcase_16 AC 69 ms
13,952 KB
testcase_17 AC 111 ms
14,380 KB
testcase_18 AC 117 ms
14,592 KB
testcase_19 AC 136 ms
15,584 KB
testcase_20 AC 96 ms
14,180 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 60 ms
13,820 KB
testcase_26 AC 160 ms
17,484 KB
testcase_27 AC 50 ms
13,824 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