結果

問題 No.1134 Deviation Score Ⅱ
ユーザー roarisroaris
提出日時 2020-07-27 22:35:04
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 221 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 86,784 KB
最終ジャッジ日時 2024-06-28 21:12:07
合計ジャッジ時間 2,747 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 73 ms
80,000 KB
testcase_02 AC 51 ms
73,856 KB
testcase_03 AC 55 ms
77,568 KB
testcase_04 AC 47 ms
67,072 KB
testcase_05 AC 57 ms
80,000 KB
testcase_06 AC 45 ms
64,768 KB
testcase_07 AC 48 ms
63,488 KB
testcase_08 AC 56 ms
77,440 KB
testcase_09 AC 46 ms
62,848 KB
testcase_10 AC 43 ms
59,648 KB
testcase_11 AC 54 ms
73,472 KB
testcase_12 AC 53 ms
72,448 KB
testcase_13 AC 60 ms
82,816 KB
testcase_14 AC 54 ms
73,216 KB
testcase_15 AC 49 ms
68,224 KB
testcase_16 AC 45 ms
63,232 KB
testcase_17 AC 53 ms
72,192 KB
testcase_18 AC 54 ms
74,240 KB
testcase_19 AC 57 ms
77,952 KB
testcase_20 AC 49 ms
69,504 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 43 ms
61,312 KB
testcase_26 AC 60 ms
83,200 KB
testcase_27 AC 38 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
x = list(map(int, input().split()))
M = int(input())-1
ave = sum(x)/N
var = sum((xi-ave)**2 for xi in x)/N
sigma = var**0.5
d = (x[M]-ave)*10/sigma
print(int(50+d))
0