結果

問題 No.1134 Deviation Score Ⅱ
ユーザー gorugo30gorugo30
提出日時 2021-02-25 14:37:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 241 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 83,200 KB
最終ジャッジ日時 2024-10-01 05:34:25
合計ジャッジ時間 3,225 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,480 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 45 ms
67,584 KB
testcase_05 WA -
testcase_06 AC 45 ms
65,024 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 43 ms
62,976 KB
testcase_10 AC 42 ms
59,776 KB
testcase_11 AC 55 ms
73,472 KB
testcase_12 WA -
testcase_13 AC 60 ms
82,560 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 44 ms
63,744 KB
testcase_17 AC 51 ms
72,320 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 54 ms
77,952 KB
testcase_22 AC 54 ms
77,056 KB
testcase_23 AC 34 ms
51,840 KB
testcase_24 AC 35 ms
51,968 KB
testcase_25 AC 43 ms
61,696 KB
testcase_26 AC 62 ms
83,200 KB
testcase_27 AC 36 ms
51,840 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(50 + int(10 * (X[M - 1] - mu) / sigma))
0