結果

問題 No.1134 Deviation Score Ⅱ
ユーザー 37zigen37zigen
提出日時 2020-08-03 16:15:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 251 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 17,788 KB
最終ジャッジ日時 2024-09-13 06:58:36
合計ジャッジ時間 3,377 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 81 ms
16,176 KB
testcase_02 AC 65 ms
14,672 KB
testcase_03 AC 72 ms
15,628 KB
testcase_04 WA -
testcase_05 AC 81 ms
16,152 KB
testcase_06 WA -
testcase_07 AC 39 ms
11,904 KB
testcase_08 AC 72 ms
15,316 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 62 ms
14,296 KB
testcase_13 WA -
testcase_14 AC 64 ms
14,408 KB
testcase_15 AC 55 ms
13,260 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 66 ms
14,700 KB
testcase_19 AC 76 ms
15,524 KB
testcase_20 AC 56 ms
13,312 KB
testcase_21 AC 74 ms
15,824 KB
testcase_22 AC 65 ms
14,188 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 36 ms
11,392 KB
testcase_26 AC 88 ms
17,788 KB
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N=int(input())
x=[int(x) for x in input().split()]
M=int(input())-1
e=sum(x)/N
y=[(v-e)**2 for v in x]
a=math.sqrt(sum(y)/N)
if a==0:
    print(50)
    exit()
ans=(e-x[M])*10/a
if x[M]>e:
    ans=50+ans
else:
    ans=50-ans
print(int(ans))
0