結果

問題 No.1134 Deviation Score Ⅱ
ユーザー miya145592miya145592
提出日時 2023-05-16 23:24:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 279 bytes
コンパイル時間 449 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 90,496 KB
最終ジャッジ日時 2024-12-14 20:49:38
合計ジャッジ時間 3,488 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 65 ms
86,400 KB
testcase_02 AC 61 ms
78,464 KB
testcase_03 AC 61 ms
82,816 KB
testcase_04 AC 51 ms
70,016 KB
testcase_05 AC 68 ms
86,016 KB
testcase_06 AC 50 ms
66,432 KB
testcase_07 AC 47 ms
64,768 KB
testcase_08 AC 63 ms
82,304 KB
testcase_09 AC 48 ms
64,256 KB
testcase_10 AC 45 ms
60,160 KB
testcase_11 AC 60 ms
78,208 KB
testcase_12 AC 57 ms
76,416 KB
testcase_13 AC 69 ms
88,704 KB
testcase_14 AC 62 ms
78,080 KB
testcase_15 AC 55 ms
71,296 KB
testcase_16 AC 49 ms
65,408 KB
testcase_17 AC 58 ms
76,672 KB
testcase_18 AC 60 ms
78,464 KB
testcase_19 AC 63 ms
83,200 KB
testcase_20 AC 54 ms
72,852 KB
testcase_21 AC 63 ms
83,584 KB
testcase_22 AC 61 ms
82,048 KB
testcase_23 AC 40 ms
52,096 KB
testcase_24 AC 40 ms
52,352 KB
testcase_25 AC 47 ms
63,104 KB
testcase_26 AC 70 ms
90,496 KB
testcase_27 AC 38 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