結果

問題 No.1134 Deviation Score Ⅱ
ユーザー fastmathfastmath
提出日時 2020-08-03 19:42:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 217 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 82,792 KB
最終ジャッジ日時 2024-09-13 14:19:55
合計ジャッジ時間 2,832 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,752 KB
testcase_01 AC 58 ms
78,996 KB
testcase_02 AC 55 ms
73,072 KB
testcase_03 AC 57 ms
76,960 KB
testcase_04 AC 49 ms
67,464 KB
testcase_05 AC 58 ms
78,208 KB
testcase_06 AC 48 ms
64,596 KB
testcase_07 AC 44 ms
63,012 KB
testcase_08 AC 56 ms
76,232 KB
testcase_09 AC 45 ms
63,812 KB
testcase_10 AC 44 ms
60,524 KB
testcase_11 AC 54 ms
72,468 KB
testcase_12 AC 52 ms
71,208 KB
testcase_13 AC 60 ms
80,564 KB
testcase_14 AC 52 ms
72,496 KB
testcase_15 AC 48 ms
67,804 KB
testcase_16 AC 45 ms
63,376 KB
testcase_17 AC 53 ms
71,360 KB
testcase_18 AC 53 ms
73,000 KB
testcase_19 AC 58 ms
77,384 KB
testcase_20 AC 50 ms
68,724 KB
testcase_21 AC 57 ms
77,344 KB
testcase_22 AC 56 ms
75,284 KB
testcase_23 AC 38 ms
53,564 KB
testcase_24 AC 38 ms
52,864 KB
testcase_25 AC 45 ms
62,308 KB
testcase_26 AC 62 ms
82,792 KB
testcase_27 AC 37 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
m = int(input())-1
av = sum(a)/n
k = 0
for e in a:
    k += (e - av) ** 2
r = (k/n) ** 0.5
if r == 0:
    print(50)
else:
    print(int((a[m]-av)*10/r+50))        
0