結果

問題 No.1134 Deviation Score Ⅱ
ユーザー 👑 KazunKazun
提出日時 2020-07-29 02:12:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 203 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 82,816 KB
最終ジャッジ日時 2024-06-28 21:13:54
合計ジャッジ時間 2,635 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 70 ms
79,488 KB
testcase_02 AC 55 ms
73,344 KB
testcase_03 AC 62 ms
77,056 KB
testcase_04 AC 56 ms
67,200 KB
testcase_05 AC 71 ms
79,488 KB
testcase_06 AC 51 ms
65,024 KB
testcase_07 AC 47 ms
62,720 KB
testcase_08 AC 59 ms
76,928 KB
testcase_09 AC 51 ms
62,848 KB
testcase_10 AC 48 ms
59,520 KB
testcase_11 AC 62 ms
73,472 KB
testcase_12 AC 60 ms
72,064 KB
testcase_13 AC 71 ms
81,920 KB
testcase_14 AC 55 ms
72,960 KB
testcase_15 AC 49 ms
68,480 KB
testcase_16 AC 46 ms
63,744 KB
testcase_17 AC 54 ms
72,192 KB
testcase_18 AC 55 ms
73,856 KB
testcase_19 AC 58 ms
77,696 KB
testcase_20 AC 55 ms
69,248 KB
testcase_21 AC 62 ms
77,696 KB
testcase_22 AC 67 ms
76,544 KB
testcase_23 AC 42 ms
52,096 KB
testcase_24 AC 43 ms
51,712 KB
testcase_25 AC 51 ms
61,696 KB
testcase_26 AC 74 ms
82,816 KB
testcase_27 AC 39 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt

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

A=sum(X)/N
S=sqrt(sum([(x-A)*(x-A) for x in X])/N)

if S==0:
    print(50)
else:
    print(int((X[M]-A)/S*10+50))
0