結果

問題 No.1134 Deviation Score Ⅱ
ユーザー titiatitia
提出日時 2023-11-15 05:17:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 222 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 17,876 KB
最終ジャッジ日時 2024-09-26 04:33:11
合計ジャッジ時間 2,365 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,880 KB
testcase_01 AC 80 ms
16,140 KB
testcase_02 AC 68 ms
14,680 KB
testcase_03 AC 72 ms
15,592 KB
testcase_04 AC 49 ms
12,800 KB
testcase_05 AC 79 ms
15,988 KB
testcase_06 AC 41 ms
12,160 KB
testcase_07 AC 36 ms
11,776 KB
testcase_08 AC 71 ms
15,272 KB
testcase_09 AC 37 ms
11,520 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 60 ms
14,080 KB
testcase_12 AC 60 ms
14,464 KB
testcase_13 AC 83 ms
16,716 KB
testcase_14 AC 63 ms
14,208 KB
testcase_15 AC 50 ms
13,056 KB
testcase_16 AC 37 ms
11,904 KB
testcase_17 AC 58 ms
14,268 KB
testcase_18 AC 60 ms
14,536 KB
testcase_19 AC 71 ms
15,600 KB
testcase_20 AC 50 ms
13,276 KB
testcase_21 AC 48 ms
15,900 KB
testcase_22 AC 40 ms
11,888 KB
testcase_23 AC 27 ms
10,752 KB
testcase_24 AC 28 ms
10,880 KB
testcase_25 AC 32 ms
11,392 KB
testcase_26 AC 88 ms
17,876 KB
testcase_27 AC 28 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
M=int(input())

X=A[M-1]

ave=sum(A)/N

if X==ave:
    print(50)
else:
    S=0
    for a in A:
        S+=abs(a-ave)**2

    p=(X-ave)*10/((S/N)**(1/2))

    print(int(p+50))
0