結果

問題 No.1134 Deviation Score Ⅱ
ユーザー MaboyMaboy
提出日時 2021-10-02 17:03:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 284 bytes
コンパイル時間 538 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,752 KB
最終ジャッジ日時 2024-07-20 11:52:43
合計ジャッジ時間 3,630 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 43 ms
12,624 KB
testcase_05 WA -
testcase_06 AC 37 ms
12,160 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 33 ms
11,520 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 55 ms
14,336 KB
testcase_12 WA -
testcase_13 AC 72 ms
16,716 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 37 ms
11,648 KB
testcase_17 AC 52 ms
14,156 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 63 ms
15,780 KB
testcase_22 AC 55 ms
13,912 KB
testcase_23 AC 27 ms
10,496 KB
testcase_24 AC 26 ms
10,496 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 28 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
x = list(map(int,input().split()))
m = int(input())
ave = sum(x)/len(x)
x1 = [(z-ave)**2 for z in x]
r = (sum(x1)/len(x1))**0.5
if r != 0:
    s = (x[m-1]-ave)* 10 / r
    if x[m-1] > ave:
        s = s + 50
    else:
        s = 50 - s
else:
    s = 50
print(int(s))
0