結果
| 問題 |
No.1134 Deviation Score Ⅱ
|
| ユーザー |
|
| 提出日時 | 2022-10-20 17:10:50 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 81 ms / 2,000 ms |
| コード長 | 557 bytes |
| コンパイル時間 | 79 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 17,932 KB |
| 最終ジャッジ日時 | 2024-06-30 09:26:51 |
| 合計ジャッジ時間 | 3,372 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 27 |
ソースコード
from math import sqrt, floor
def main():
N = int(input())
scores = list(map(int, input().split()))
M = int(input())
average = sum(scores) / N
std_deviation = sqrt(
sum(map(lambda score: (score - average)**2, scores))/N)
try:
deviation_score = 50 + (scores[M-1] - average)*10/std_deviation
except ZeroDivisionError:
deviation_score = 50
if deviation_score >= 0:
print(floor(deviation_score))
else:
print(-1*floor(abs(deviation_score)))
if __name__ == "__main__":
main()