結果

問題 No.1134 Deviation Score Ⅱ
ユーザー tomoyaatcodertomoyaatcoder
提出日時 2020-07-30 02:59:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 385 bytes
コンパイル時間 551 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 83,456 KB
最終ジャッジ日時 2024-07-01 05:37:55
合計ジャッジ時間 2,544 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 68 ms
79,744 KB
testcase_02 AC 55 ms
73,216 KB
testcase_03 AC 57 ms
76,672 KB
testcase_04 AC 49 ms
67,328 KB
testcase_05 AC 59 ms
79,616 KB
testcase_06 AC 45 ms
64,384 KB
testcase_07 AC 44 ms
63,488 KB
testcase_08 AC 61 ms
76,800 KB
testcase_09 AC 45 ms
62,080 KB
testcase_10 AC 43 ms
59,008 KB
testcase_11 AC 55 ms
72,832 KB
testcase_12 AC 53 ms
71,552 KB
testcase_13 AC 61 ms
82,048 KB
testcase_14 AC 54 ms
73,344 KB
testcase_15 AC 50 ms
68,736 KB
testcase_16 AC 44 ms
62,976 KB
testcase_17 AC 52 ms
72,192 KB
testcase_18 AC 54 ms
73,216 KB
testcase_19 AC 57 ms
77,824 KB
testcase_20 AC 50 ms
69,248 KB
testcase_21 AC 58 ms
77,440 KB
testcase_22 AC 56 ms
76,544 KB
testcase_23 AC 37 ms
51,840 KB
testcase_24 AC 36 ms
52,352 KB
testcase_25 AC 44 ms
61,056 KB
testcase_26 AC 63 ms
83,456 KB
testcase_27 AC 35 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt

n = int(input())
x = list(map(int, input().split()))
m = int(input()) - 1

average = sum(x) / n
a = [abs(i - average) ** 2 for i in x]
b = sqrt(sum(a) / n)
if b == 0:
    print(50)
    exit(0)
c = abs(average - x[m]) * 10 / b
if x[m] > average:
    print(int(50 + c))
else:
    print(int(50 - c))
# print("average =", average)
# print("b =", b)
# print("c =", c)
0