結果

問題 No.1134 Deviation Score Ⅱ
ユーザー rythem00359rythem00359
提出日時 2020-08-13 09:41:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 204 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 46,480 KB
最終ジャッジ日時 2024-10-09 19:04:43
合計ジャッジ時間 19,097 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 508 ms
43,920 KB
testcase_01 AC 603 ms
45,716 KB
testcase_02 AC 579 ms
44,812 KB
testcase_03 AC 592 ms
45,452 KB
testcase_04 AC 548 ms
43,920 KB
testcase_05 AC 602 ms
45,840 KB
testcase_06 AC 532 ms
43,916 KB
testcase_07 AC 525 ms
44,044 KB
testcase_08 AC 584 ms
45,192 KB
testcase_09 AC 519 ms
43,932 KB
testcase_10 AC 503 ms
43,920 KB
testcase_11 AC 566 ms
44,808 KB
testcase_12 AC 558 ms
44,684 KB
testcase_13 AC 609 ms
45,972 KB
testcase_14 AC 564 ms
44,684 KB
testcase_15 AC 545 ms
44,296 KB
testcase_16 AC 529 ms
44,172 KB
testcase_17 AC 564 ms
44,816 KB
testcase_18 AC 577 ms
44,824 KB
testcase_19 AC 595 ms
45,312 KB
testcase_20 AC 557 ms
44,184 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 518 ms
43,928 KB
testcase_26 AC 627 ms
46,480 KB
testcase_27 AC 510 ms
43,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import numpy
N=int(input())
x=numpy.array([*map(int, input().split())])
M=int(input())
mae=0
ave=numpy.mean(x)
for i in x:
    mae+=pow(ave-i,2)/N
print(int((x[M-1]-ave)*10/math.sqrt(mae)+50))
0