結果
| 問題 | No.1134 Deviation Score Ⅱ |
| ユーザー |
|
| 提出日時 | 2024-06-25 21:09:32 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 285 bytes |
| 記録 | |
| コンパイル時間 | 347 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 21,348 KB |
| 最終ジャッジ日時 | 2026-03-12 07:15:20 |
| 合計ジャッジ時間 | 4,984 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 23 RE * 4 |
ソースコード
n = int(input())
students = list(map(int, input().split()))
m = int(input())
ave = sum(students) / n
var = sum((student - ave) ** 2 for student in students)
std = (var / n) ** 0.5
if std == 0:
print(50)
exti()
else:
print(int(((students[m - 1] - ave) / std) * 10 + 50))