結果

問題 No.1134 Deviation Score Ⅱ
ユーザー MaboyMaboy
提出日時 2021-10-03 17:22:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 246 bytes
コンパイル時間 123 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 17,752 KB
最終ジャッジ日時 2024-07-21 11:45:06
合計ジャッジ時間 3,366 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 80 ms
16,148 KB
testcase_02 AC 63 ms
14,516 KB
testcase_03 AC 70 ms
15,468 KB
testcase_04 AC 47 ms
12,756 KB
testcase_05 AC 75 ms
15,996 KB
testcase_06 AC 42 ms
12,032 KB
testcase_07 AC 38 ms
11,648 KB
testcase_08 AC 68 ms
15,160 KB
testcase_09 AC 39 ms
11,648 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 60 ms
14,080 KB
testcase_12 AC 59 ms
14,336 KB
testcase_13 AC 80 ms
16,720 KB
testcase_14 AC 61 ms
14,080 KB
testcase_15 AC 50 ms
13,096 KB
testcase_16 AC 38 ms
11,904 KB
testcase_17 AC 62 ms
14,276 KB
testcase_18 AC 64 ms
14,540 KB
testcase_19 AC 72 ms
15,596 KB
testcase_20 AC 53 ms
13,160 KB
testcase_21 AC 70 ms
15,908 KB
testcase_22 AC 63 ms
14,028 KB
testcase_23 AC 30 ms
10,880 KB
testcase_24 AC 31 ms
10,880 KB
testcase_25 AC 35 ms
11,264 KB
testcase_26 AC 82 ms
17,752 KB
testcase_27 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

av = sum(x) / n
d1 = [(i - av) ** 2 for i in x]
d2 = (sum(d1)/n) ** 0.5
xm = x[m-1]

if d2 != 0:
    d3 = (xm - av) * 10 / d2
    d4 = 50 + d3
else:
    d4 = 50
print(int(d4))
0