結果

問題 No.1134 Deviation Score Ⅱ
ユーザー kikagekikage
提出日時 2021-08-16 16:51:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 534 ms / 2,000 ms
コード長 166 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 47,116 KB
最終ジャッジ日時 2024-10-09 14:04:23
合計ジャッジ時間 16,675 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 502 ms
43,792 KB
testcase_01 AC 532 ms
46,092 KB
testcase_02 AC 517 ms
44,560 KB
testcase_03 AC 518 ms
45,704 KB
testcase_04 AC 506 ms
44,048 KB
testcase_05 AC 534 ms
46,092 KB
testcase_06 AC 509 ms
44,432 KB
testcase_07 AC 510 ms
44,428 KB
testcase_08 AC 525 ms
45,064 KB
testcase_09 AC 498 ms
44,184 KB
testcase_10 AC 495 ms
43,968 KB
testcase_11 AC 520 ms
45,140 KB
testcase_12 AC 522 ms
44,940 KB
testcase_13 AC 533 ms
46,612 KB
testcase_14 AC 514 ms
45,068 KB
testcase_15 AC 510 ms
44,304 KB
testcase_16 AC 505 ms
44,040 KB
testcase_17 AC 522 ms
45,204 KB
testcase_18 AC 521 ms
44,696 KB
testcase_19 AC 529 ms
45,708 KB
testcase_20 AC 517 ms
44,052 KB
testcase_21 AC 530 ms
45,832 KB
testcase_22 AC 527 ms
43,920 KB
testcase_23 AC 505 ms
44,044 KB
testcase_24 AC 506 ms
44,300 KB
testcase_25 AC 508 ms
44,296 KB
testcase_26 AC 529 ms
47,116 KB
testcase_27 AC 494 ms
43,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N=int(input())
X=np.array(list(map(int,input().split())))
M=int(input())
s=np.std(X)
if s==0:P=50
else:P=int(50+10*(X[M-1]-np.mean(X))/s)
print(P)
0