結果

問題 No.1134 Deviation Score Ⅱ
ユーザー ohanaohana
提出日時 2023-11-06 11:52:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 315 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 86,400 KB
最終ジャッジ日時 2024-09-25 23:01:39
合計ジャッジ時間 2,366 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 58 ms
82,560 KB
testcase_02 AC 52 ms
75,904 KB
testcase_03 AC 54 ms
79,744 KB
testcase_04 AC 46 ms
68,352 KB
testcase_05 AC 58 ms
82,560 KB
testcase_06 AC 43 ms
65,792 KB
testcase_07 AC 42 ms
63,744 KB
testcase_08 AC 57 ms
79,744 KB
testcase_09 AC 43 ms
63,488 KB
testcase_10 AC 41 ms
60,032 KB
testcase_11 AC 52 ms
75,520 KB
testcase_12 AC 51 ms
74,112 KB
testcase_13 AC 59 ms
85,504 KB
testcase_14 AC 52 ms
75,776 KB
testcase_15 AC 49 ms
69,760 KB
testcase_16 AC 44 ms
64,256 KB
testcase_17 AC 50 ms
74,368 KB
testcase_18 AC 52 ms
75,904 KB
testcase_19 AC 55 ms
80,512 KB
testcase_20 AC 48 ms
70,656 KB
testcase_21 AC 55 ms
77,952 KB
testcase_22 AC 53 ms
76,928 KB
testcase_23 AC 36 ms
51,712 KB
testcase_24 AC 35 ms
52,480 KB
testcase_25 AC 42 ms
62,080 KB
testcase_26 AC 60 ms
86,400 KB
testcase_27 AC 35 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

n = int(input())
A = list(map(int, input().split()))
m = int(input())

ave = sum(A) / n

q1 = [((a - ave) ** 2) for a in A]
if sum(q1) == 0:
    print(50)
    exit()
q2 = math.sqrt(sum(q1) / n)
q3 = abs(A[m - 1] - ave) * 10 / q2
if A[m - 1] > ave:
    print(int(50 + q3))
else:
    print(int(50 - q3))
0