結果

問題 No.1134 Deviation Score Ⅱ
ユーザー akitsugu777akitsugu777
提出日時 2020-12-07 14:51:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 17,708 KB
最終ジャッジ日時 2024-09-17 13:54:29
合計ジャッジ時間 2,170 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 71 ms
16,152 KB
testcase_02 AC 52 ms
14,512 KB
testcase_03 AC 60 ms
15,596 KB
testcase_04 AC 39 ms
12,876 KB
testcase_05 AC 65 ms
16,124 KB
testcase_06 AC 35 ms
12,160 KB
testcase_07 AC 33 ms
11,776 KB
testcase_08 AC 59 ms
15,292 KB
testcase_09 AC 33 ms
11,648 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 52 ms
14,464 KB
testcase_12 AC 53 ms
14,336 KB
testcase_13 AC 74 ms
16,840 KB
testcase_14 AC 56 ms
14,464 KB
testcase_15 AC 46 ms
13,220 KB
testcase_16 AC 35 ms
11,904 KB
testcase_17 AC 52 ms
14,280 KB
testcase_18 AC 54 ms
14,540 KB
testcase_19 AC 61 ms
15,732 KB
testcase_20 AC 46 ms
13,284 KB
testcase_21 AC 65 ms
15,788 KB
testcase_22 AC 55 ms
14,296 KB
testcase_23 AC 26 ms
10,752 KB
testcase_24 AC 26 ms
10,752 KB
testcase_25 AC 30 ms
11,392 KB
testcase_26 AC 70 ms
17,708 KB
testcase_27 AC 27 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = list(map(int, input().split()))
M = int(input())

Ans = 0
A = sum(X) / N
X2 = [(i-A)**2 for i in X]
A2 = (sum(X2) / N)**0.5
if A2 == 0:
    Ans = 50
else:
    A3 = (abs(A-X[M-1])*10) / A2
    Ans = 50 + [-A3, A3][X[M-1] > A]

print(int(Ans))
0