結果
| 問題 | No.1134 Deviation Score Ⅱ |
| ユーザー |
r_ishida
|
| 提出日時 | 2026-03-05 00:14:36 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 447 bytes |
| 記録 | |
| コンパイル時間 | 380 ms |
| コンパイル使用メモリ | 85,440 KB |
| 実行使用メモリ | 97,688 KB |
| 最終ジャッジ日時 | 2026-03-05 00:14:45 |
| 合計ジャッジ時間 | 6,623 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 23 RE * 4 |
ソースコード
import math import sys def S(): return sys.stdin.readline().rstrip() def I(): return int(sys.stdin.readline().rstrip()) def MI(): return map(int, sys.stdin.readline().rstrip().split()) def LI(): return list(map(int, sys.stdin.readline().rstrip().split())) def LS(): return list(sys.stdin.readline().rstrip().split()) n = I() x = LI() m = I() from statistics import pstdev, mean st = pstdev(x) me = mean(x) ans = (x[m-1]-me)*10/st+50 print(ans)
r_ishida