結果
| 問題 | No.1134 Deviation Score Ⅱ |
| ユーザー |
nohakai3
|
| 提出日時 | 2022-07-20 13:27:15 |
| 言語 | Python3 (3.14.3 + numpy 2.4.2 + scipy 1.17.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 155 bytes |
| 記録 | |
| コンパイル時間 | 580 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 22,512 KB |
| 最終ジャッジ日時 | 2026-03-23 21:34:52 |
| 合計ジャッジ時間 | 7,886 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 24 RE * 4 |
ソースコード
n=int(input()) x=list(map(int,input().split())) m=int(input()) from statistics import pstdev,mean m-=1 ans=50+10*(x[m]-mean(x))/pstdev(x) print(int(ans))
nohakai3