結果

問題 No.1134 Deviation Score Ⅱ
ユーザー ohanaohana
提出日時 2023-11-06 11:46:07
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 301 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 88,076 KB
最終ジャッジ日時 2024-09-25 23:01:36
合計ジャッジ時間 2,905 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,352 KB
testcase_01 AC 54 ms
79,872 KB
testcase_02 AC 49 ms
73,728 KB
testcase_03 AC 52 ms
77,184 KB
testcase_04 AC 43 ms
67,456 KB
testcase_05 AC 54 ms
79,872 KB
testcase_06 AC 42 ms
65,152 KB
testcase_07 AC 42 ms
63,488 KB
testcase_08 AC 56 ms
77,312 KB
testcase_09 AC 41 ms
62,592 KB
testcase_10 AC 44 ms
59,904 KB
testcase_11 AC 49 ms
73,728 KB
testcase_12 AC 48 ms
72,576 KB
testcase_13 AC 55 ms
82,432 KB
testcase_14 AC 49 ms
73,728 KB
testcase_15 AC 44 ms
68,864 KB
testcase_16 AC 41 ms
64,000 KB
testcase_17 AC 47 ms
72,576 KB
testcase_18 AC 47 ms
73,728 KB
testcase_19 AC 50 ms
77,568 KB
testcase_20 AC 45 ms
69,120 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 39 ms
62,728 KB
testcase_26 AC 57 ms
83,532 KB
testcase_27 AC 34 ms
52,588 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]
q2 = math.sqrt(sum(q1) / n)
q3 = abs(A[m - 1] - ave) * 10 / q2
if q2 == 0:
    print(50)
elif A[m - 1] > ave:
    print(int(50 + q3))
else:
    print(int(50 - q3))
0