結果

問題 No.1134 Deviation Score Ⅱ
ユーザー roarisroaris
提出日時 2020-07-27 22:30:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 266 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 87,124 KB
最終ジャッジ日時 2024-06-28 21:12:10
合計ジャッジ時間 2,718 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 54 ms
67,072 KB
testcase_05 WA -
testcase_06 AC 51 ms
64,512 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 49 ms
62,720 KB
testcase_10 AC 45 ms
59,136 KB
testcase_11 AC 59 ms
73,344 KB
testcase_12 WA -
testcase_13 AC 69 ms
82,176 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 50 ms
63,744 KB
testcase_17 AC 59 ms
72,448 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 39 ms
51,840 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

if x[M]>=ave:
    print(int(50+d))
else:
    print(int(50-d))
0