結果

問題 No.1134 Deviation Score Ⅱ
ユーザー roarisroaris
提出日時 2020-07-29 09:00:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 267 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 84,172 KB
最終ジャッジ日時 2024-06-28 21:24:32
合計ジャッジ時間 2,156 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,444 KB
testcase_01 AC 55 ms
80,768 KB
testcase_02 AC 48 ms
74,368 KB
testcase_03 AC 52 ms
78,080 KB
testcase_04 AC 41 ms
67,072 KB
testcase_05 AC 50 ms
80,896 KB
testcase_06 AC 38 ms
64,512 KB
testcase_07 AC 37 ms
63,744 KB
testcase_08 AC 48 ms
77,824 KB
testcase_09 AC 38 ms
62,976 KB
testcase_10 AC 37 ms
59,264 KB
testcase_11 AC 50 ms
73,728 KB
testcase_12 AC 45 ms
72,832 KB
testcase_13 AC 53 ms
83,328 KB
testcase_14 AC 46 ms
73,728 KB
testcase_15 AC 42 ms
68,352 KB
testcase_16 AC 38 ms
63,872 KB
testcase_17 AC 45 ms
72,576 KB
testcase_18 AC 47 ms
74,240 KB
testcase_19 AC 49 ms
78,336 KB
testcase_20 AC 44 ms
69,760 KB
testcase_21 AC 50 ms
76,032 KB
testcase_22 AC 46 ms
75,008 KB
testcase_23 AC 32 ms
51,840 KB
testcase_24 AC 31 ms
52,224 KB
testcase_25 AC 37 ms
61,824 KB
testcase_26 AC 54 ms
84,172 KB
testcase_27 AC 32 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
x = list(map(int, input().split()))
M = int(input())-1

if x==[x[0]]*N:
    print(50)
    exit()
    
ave = sum(x)/N
var = sum((xi-ave)**2 for xi in x)/N
sigma = var**0.5
d = (x[M]-ave)*10/sigma
print(int(50+d))
0