結果
問題 |
No.1134 Deviation Score Ⅱ
|
ユーザー |
|
提出日時 | 2020-12-20 07:44:22 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 163 bytes |
コンパイル時間 | 101 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 17,744 KB |
最終ジャッジ日時 | 2024-09-21 11:34:11 |
合計ジャッジ時間 | 2,675 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 15 WA * 12 |
ソースコード
n=int(input()) l=list(map(int,input().split())) m=int(input()) a=sum(l)/n s=sum([abs(x-a)**2/n for x in l])**.5 print(50 if l[m-1]==a else 50+int((l[m-1]-a)*10/s))