結果

問題 No.1134 Deviation Score Ⅱ
ユーザー _matumo__matumo_
提出日時 2020-08-05 10:15:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 137 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 10,504 KB
実行使用メモリ 15,792 KB
最終ジャッジ日時 2023-10-14 05:12:29
合計ジャッジ時間 2,412 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,744 KB
testcase_01 AC 53 ms
14,720 KB
testcase_02 AC 40 ms
12,632 KB
testcase_03 AC 46 ms
13,684 KB
testcase_04 AC 29 ms
10,464 KB
testcase_05 AC 51 ms
14,636 KB
testcase_06 AC 25 ms
9,916 KB
testcase_07 AC 22 ms
9,400 KB
testcase_08 AC 44 ms
13,652 KB
testcase_09 AC 21 ms
9,340 KB
testcase_10 AC 16 ms
7,856 KB
testcase_11 AC 39 ms
12,384 KB
testcase_12 AC 37 ms
12,324 KB
testcase_13 AC 54 ms
15,332 KB
testcase_14 AC 39 ms
12,556 KB
testcase_15 AC 30 ms
11,260 KB
testcase_16 AC 23 ms
9,472 KB
testcase_17 AC 38 ms
12,352 KB
testcase_18 AC 40 ms
12,672 KB
testcase_19 AC 48 ms
14,124 KB
testcase_20 AC 32 ms
11,416 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 20 ms
8,756 KB
testcase_26 AC 55 ms
15,792 KB
testcase_27 AC 16 ms
7,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,*P,M=map(int,(input()+' '+input()+' '+input()).split())
m=sum(P)/N
a=(sum([(n-m)**2 for n in P])/N)**0.5
print(int((P[M-1]-m)*10/a+50))
0