結果

問題 No.1134 Deviation Score Ⅱ
ユーザー miya145592miya145592
提出日時 2023-05-16 23:24:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 279 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 90,752 KB
最終ジャッジ日時 2024-05-08 15:52:04
合計ジャッジ時間 3,557 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 66 ms
86,272 KB
testcase_02 AC 58 ms
78,204 KB
testcase_03 AC 63 ms
82,688 KB
testcase_04 AC 52 ms
70,144 KB
testcase_05 AC 63 ms
85,888 KB
testcase_06 AC 48 ms
66,944 KB
testcase_07 AC 47 ms
64,896 KB
testcase_08 AC 61 ms
82,816 KB
testcase_09 AC 46 ms
64,384 KB
testcase_10 AC 44 ms
60,160 KB
testcase_11 AC 58 ms
78,208 KB
testcase_12 AC 57 ms
76,800 KB
testcase_13 AC 67 ms
88,960 KB
testcase_14 AC 58 ms
77,824 KB
testcase_15 AC 52 ms
71,680 KB
testcase_16 AC 48 ms
65,280 KB
testcase_17 AC 57 ms
76,544 KB
testcase_18 AC 58 ms
78,464 KB
testcase_19 AC 69 ms
83,456 KB
testcase_20 AC 52 ms
72,960 KB
testcase_21 AC 62 ms
83,200 KB
testcase_22 AC 60 ms
82,304 KB
testcase_23 AC 38 ms
52,224 KB
testcase_24 AC 38 ms
52,352 KB
testcase_25 AC 45 ms
62,848 KB
testcase_26 AC 68 ms
90,752 KB
testcase_27 AC 39 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N = int(input())
X = list(map(int, input().split()))
M = int(input())
a = sum(X)/N
v = []
for x in X:
    v.append((x-a)**2)
u = math.sqrt(sum(v)/N)
if u==0:
    print(50)
    exit()
t = abs(X[M-1]-a)*10/u
if X[M-1]>=a:
    print(int(50+t))
else:
    print(int(50-t))
0