結果
| 問題 | No.1134 Deviation Score Ⅱ |
| ユーザー |
|
| 提出日時 | 2020-07-27 11:29:18 |
| 言語 | Python3 (3.14.3 + numpy 2.4.2 + scipy 1.17.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 179 bytes |
| 記録 | |
| コンパイル時間 | 157 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 17,764 KB |
| 最終ジャッジ日時 | 2024-06-28 21:11:45 |
| 合計ジャッジ時間 | 2,496 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 23 RE * 4 |
ソースコード
from math import sqrt n=int(input()) x=list(map(int,input().split())) m=int(input())-1 s=sum(x)/n a=[pow(s-x[i],2) for i in range(n)] t=sqrt(sum(a)/n) print(int((x[m]-s)*10/t+50))