結果
| 問題 | No.1134 Deviation Score Ⅱ |
| ユーザー |
rythem00359
|
| 提出日時 | 2020-08-13 10:02:27 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 157 bytes |
| 記録 | |
| コンパイル時間 | 528 ms |
| コンパイル使用メモリ | 20,824 KB |
| 実行使用メモリ | 20,720 KB |
| 最終ジャッジ日時 | 2026-04-25 23:13:50 |
| 合計ジャッジ時間 | 4,734 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 15 WA * 13 |
ソースコード
N=int(input()) x=[*map(int, input().split())] M=int(input()) a=sum(x)/N m=(sum([(b-a)**2 for b in x])/N)**0.5 print(50 if m==0 else int((x[M-1]-a)*10/m)+50)
rythem00359