結果

問題 No.1134 Deviation Score Ⅱ
ユーザー 37zigen37zigen
提出日時 2020-08-03 16:51:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 165 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,752 KB
最終ジャッジ日時 2024-09-13 09:06:43
合計ジャッジ時間 2,646 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 82 ms
16,272 KB
testcase_02 AC 66 ms
14,636 KB
testcase_03 AC 74 ms
15,596 KB
testcase_04 AC 49 ms
12,880 KB
testcase_05 AC 81 ms
16,124 KB
testcase_06 AC 42 ms
12,160 KB
testcase_07 AC 40 ms
11,776 KB
testcase_08 AC 73 ms
15,412 KB
testcase_09 AC 38 ms
11,648 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 64 ms
14,464 KB
testcase_12 AC 64 ms
14,336 KB
testcase_13 AC 85 ms
16,844 KB
testcase_14 AC 63 ms
14,592 KB
testcase_15 AC 52 ms
13,220 KB
testcase_16 AC 40 ms
11,904 KB
testcase_17 AC 62 ms
14,312 KB
testcase_18 AC 64 ms
14,668 KB
testcase_19 AC 76 ms
15,728 KB
testcase_20 AC 54 ms
13,284 KB
testcase_21 AC 72 ms
15,912 KB
testcase_22 AC 65 ms
14,168 KB
testcase_23 AC 29 ms
10,752 KB
testcase_24 AC 29 ms
10,752 KB
testcase_25 AC 35 ms
11,520 KB
testcase_26 AC 87 ms
17,752 KB
testcase_27 AC 30 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
x=[int(x) for x in input().split()]
M=int(input())-1
e=sum(x)/N
y=[(v-e)**2 for v in x]
a=(sum(y)/N)**0.5
print(50 if a==0 else int((x[M]-e)*10/a+50))
0