結果

問題 No.1134 Deviation Score Ⅱ
ユーザー umashi-pan-tnokk093numashi-pan-tnokk093n
提出日時 2020-08-13 19:40:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 383 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 19,712 KB
最終ジャッジ日時 2024-10-09 19:29:43
合計ジャッジ時間 3,563 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 144 ms
18,328 KB
testcase_02 AC 108 ms
16,160 KB
testcase_03 AC 134 ms
17,440 KB
testcase_04 AC 74 ms
13,672 KB
testcase_05 AC 150 ms
18,200 KB
testcase_06 AC 59 ms
12,828 KB
testcase_07 AC 50 ms
12,288 KB
testcase_08 AC 126 ms
17,228 KB
testcase_09 AC 48 ms
12,160 KB
testcase_10 AC 31 ms
10,880 KB
testcase_11 AC 115 ms
16,080 KB
testcase_12 AC 103 ms
15,696 KB
testcase_13 AC 158 ms
19,220 KB
testcase_14 AC 107 ms
16,116 KB
testcase_15 AC 81 ms
14,284 KB
testcase_16 AC 54 ms
12,416 KB
testcase_17 AC 104 ms
15,704 KB
testcase_18 AC 114 ms
16,164 KB
testcase_19 AC 141 ms
17,612 KB
testcase_20 AC 87 ms
14,352 KB
testcase_21 AC 76 ms
16,060 KB
testcase_22 AC 65 ms
14,184 KB
testcase_23 AC 29 ms
10,752 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 42 ms
11,648 KB
testcase_26 AC 155 ms
19,712 KB
testcase_27 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ave=sum(x)/n
xx=[]
for i in x:
    xx.append((i-ave)**2)
bunsan=sum(xx)/n
hyojunhensa=bunsan**0.5
hensachi=[]
if hyojunhensa==0:
    print(50)
else:
    for i in x:
        tmp=abs(i-ave)*10
        tmp/=hyojunhensa
        if (i-ave)<0:
            tmp*=-1
        hensachi.append(50+tmp)
    print(int(hensachi[m-1]))
0