結果
| 問題 | No.1134 Deviation Score Ⅱ |
| ユーザー |
rythem00359
|
| 提出日時 | 2020-08-13 09:41:27 |
| 言語 | Python3 (3.14.2 + numpy 2.4.0 + scipy 1.16.3) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 204 bytes |
| 記録 | |
| コンパイル時間 | 328 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 46,480 KB |
| 最終ジャッジ日時 | 2024-10-09 19:04:43 |
| 合計ジャッジ時間 | 19,097 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 23 RE * 4 |
ソースコード
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))
rythem00359