結果

問題 No.1134 Deviation Score Ⅱ
ユーザー dangodango
提出日時 2023-06-24 18:59:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 512 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 89,508 KB
最終ジャッジ日時 2024-07-01 21:57:10
合計ジャッジ時間 3,174 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,440 KB
testcase_01 AC 65 ms
85,148 KB
testcase_02 AC 57 ms
78,216 KB
testcase_03 AC 62 ms
81,760 KB
testcase_04 AC 52 ms
70,616 KB
testcase_05 AC 65 ms
85,220 KB
testcase_06 AC 48 ms
66,240 KB
testcase_07 AC 47 ms
66,704 KB
testcase_08 AC 65 ms
82,068 KB
testcase_09 AC 48 ms
65,412 KB
testcase_10 AC 44 ms
60,540 KB
testcase_11 AC 58 ms
77,516 KB
testcase_12 AC 56 ms
75,560 KB
testcase_13 AC 67 ms
88,284 KB
testcase_14 AC 58 ms
76,684 KB
testcase_15 AC 51 ms
72,172 KB
testcase_16 AC 48 ms
65,768 KB
testcase_17 AC 56 ms
75,440 KB
testcase_18 AC 58 ms
77,760 KB
testcase_19 AC 60 ms
82,628 KB
testcase_20 AC 53 ms
72,856 KB
testcase_21 AC 61 ms
80,796 KB
testcase_22 AC 59 ms
81,504 KB
testcase_23 AC 39 ms
52,392 KB
testcase_24 AC 38 ms
52,912 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 39 ms
52,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = list(map(int, input().split()))
A = []
M = 0
for i in range(N):
    A.append(X[i])
    M += A[i]
M /= N
AS = True
for i in range(1, N):
    if A[i] != A[0]:
        AS = False
        break
if AS:
    print("50")
    exit(0)
Q = 0
for i in range(N):
    Q += (A[i] - M) ** 2
RQ = (Q / N) ** 0.5
M1 = int(input())
ret = 50 + 10 * (A[M1 - 1] - M) / RQ
if 50 + 10 * (A[M1 - 1] - M) / RQ >= 0:
    print(int(50 + 10 * (A[M1 - 1] - M) / RQ))
else:
    print(-int(-50 + 10 * (A[M1 - 1] - M) / RQ))
0