結果

問題 No.1134 Deviation Score Ⅱ
ユーザー gorugo30gorugo30
提出日時 2021-02-25 14:38:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 241 bytes
コンパイル時間 493 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 85,048 KB
最終ジャッジ日時 2024-10-01 05:37:00
合計ジャッジ時間 2,911 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,504 KB
testcase_01 AC 60 ms
81,068 KB
testcase_02 AC 55 ms
74,060 KB
testcase_03 AC 56 ms
77,668 KB
testcase_04 AC 48 ms
67,984 KB
testcase_05 AC 61 ms
81,512 KB
testcase_06 AC 46 ms
65,224 KB
testcase_07 AC 45 ms
64,124 KB
testcase_08 AC 57 ms
77,472 KB
testcase_09 AC 44 ms
63,160 KB
testcase_10 AC 45 ms
61,676 KB
testcase_11 AC 53 ms
73,928 KB
testcase_12 AC 52 ms
73,220 KB
testcase_13 AC 60 ms
82,300 KB
testcase_14 AC 50 ms
74,832 KB
testcase_15 AC 49 ms
68,944 KB
testcase_16 AC 46 ms
65,168 KB
testcase_17 AC 53 ms
72,884 KB
testcase_18 AC 53 ms
74,332 KB
testcase_19 AC 56 ms
78,308 KB
testcase_20 AC 51 ms
70,880 KB
testcase_21 AC 56 ms
78,004 KB
testcase_22 AC 57 ms
77,416 KB
testcase_23 AC 38 ms
52,960 KB
testcase_24 AC 36 ms
53,076 KB
testcase_25 AC 43 ms
62,092 KB
testcase_26 AC 62 ms
85,048 KB
testcase_27 AC 37 ms
52,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = list(map(int, input().split()))
M = int(input())
mu = sum(X) / N
var = sum([(X[i] - mu) ** 2 for i in range(N)]) / N
sigma = var ** 0.5
if sigma == 0:
    print(50)
else:
    print(int(50 + 10 * (X[M - 1] - mu) / sigma))
0