結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 64 ms
16,152 KB
testcase_02 AC 58 ms
14,304 KB
testcase_03 AC 64 ms
15,404 KB
testcase_04 AC 40 ms
12,800 KB
testcase_05 AC 64 ms
16,132 KB
testcase_06 AC 36 ms
12,032 KB
testcase_07 AC 33 ms
11,776 KB
testcase_08 AC 65 ms
15,164 KB
testcase_09 AC 35 ms
11,648 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 53 ms
14,288 KB
testcase_12 AC 51 ms
14,464 KB
testcase_13 AC 72 ms
16,728 KB
testcase_14 AC 55 ms
14,464 KB
testcase_15 AC 45 ms
13,092 KB
testcase_16 AC 33 ms
12,032 KB
testcase_17 AC 52 ms
14,284 KB
testcase_18 AC 54 ms
14,300 KB
testcase_19 AC 62 ms
15,736 KB
testcase_20 AC 50 ms
13,168 KB
testcase_21 AC 67 ms
16,040 KB
testcase_22 AC 56 ms
14,048 KB
testcase_23 AC 26 ms
10,752 KB
testcase_24 AC 25 ms
10,624 KB
testcase_25 AC 30 ms
11,392 KB
testcase_26 AC 72 ms
17,656 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
A2 = (sum([(i-A)**2 for i in X]) / 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