結果

問題 No.1134 Deviation Score Ⅱ
ユーザー nohakai3nohakai3
提出日時 2022-07-20 13:28:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 191 ms / 2,000 ms
コード長 197 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 17,516 KB
最終ジャッジ日時 2024-07-02 13:25:02
合計ジャッジ時間 4,234 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
13,696 KB
testcase_01 AC 167 ms
16,144 KB
testcase_02 AC 128 ms
14,388 KB
testcase_03 AC 153 ms
15,388 KB
testcase_04 AC 90 ms
14,220 KB
testcase_05 AC 166 ms
16,116 KB
testcase_06 AC 77 ms
14,328 KB
testcase_07 AC 69 ms
13,824 KB
testcase_08 AC 150 ms
15,152 KB
testcase_09 AC 67 ms
13,952 KB
testcase_10 AC 49 ms
13,952 KB
testcase_11 AC 134 ms
14,472 KB
testcase_12 AC 129 ms
14,376 KB
testcase_13 AC 178 ms
16,408 KB
testcase_14 AC 133 ms
14,376 KB
testcase_15 AC 100 ms
14,256 KB
testcase_16 AC 70 ms
14,080 KB
testcase_17 AC 131 ms
14,396 KB
testcase_18 AC 135 ms
14,284 KB
testcase_19 AC 166 ms
15,592 KB
testcase_20 AC 112 ms
14,316 KB
testcase_21 AC 99 ms
15,904 KB
testcase_22 AC 95 ms
14,412 KB
testcase_23 AC 44 ms
13,824 KB
testcase_24 AC 44 ms
13,952 KB
testcase_25 AC 58 ms
13,952 KB
testcase_26 AC 191 ms
17,516 KB
testcase_27 AC 47 ms
13,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

print(int(ans))
0