結果

問題 No.1134 Deviation Score Ⅱ
ユーザー matriematrie
提出日時 2020-12-20 07:36:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 154 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 11,768 KB
実行使用メモリ 18,452 KB
最終ジャッジ日時 2023-10-21 10:27:49
合計ジャッジ時間 3,172 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,180 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 44 ms
12,532 KB
testcase_05 WA -
testcase_06 AC 40 ms
11,812 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 36 ms
11,292 KB
testcase_10 AC 31 ms
10,316 KB
testcase_11 AC 56 ms
14,480 KB
testcase_12 WA -
testcase_13 AC 75 ms
17,388 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 38 ms
11,508 KB
testcase_17 AC 56 ms
14,376 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 34 ms
10,928 KB
testcase_26 AC 76 ms
18,452 KB
testcase_27 AC 29 ms
10,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
l=list(map(int,input().split()))
a=sum(l)/len(l)
s=[abs(x-a)**2 for x in l]
b=(sum(s)/len(s))**.5
print(50+int((l[int(input())-1]-a)*10/b))
0