結果
問題 |
No.1134 Deviation Score Ⅱ
|
ユーザー |
|
提出日時 | 2021-08-16 16:51:20 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 27 |
ソースコード
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)