結果
問題 | No.1134 Deviation Score Ⅱ |
ユーザー | ssmkzk |
提出日時 | 2021-02-25 18:31:01 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 386 bytes |
コンパイル時間 | 313 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 17,896 KB |
最終ジャッジ日時 | 2024-10-01 08:40:24 |
合計ジャッジ時間 | 2,430 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
10,880 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 42 ms
12,892 KB |
testcase_05 | WA | - |
testcase_06 | AC | 36 ms
12,160 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 32 ms
11,648 KB |
testcase_10 | AC | 27 ms
10,880 KB |
testcase_11 | AC | 55 ms
14,556 KB |
testcase_12 | WA | - |
testcase_13 | AC | 73 ms
16,852 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 34 ms
11,904 KB |
testcase_17 | AC | 53 ms
14,296 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 63 ms
15,932 KB |
testcase_22 | AC | 58 ms
14,312 KB |
testcase_23 | AC | 25 ms
10,880 KB |
testcase_24 | AC | 25 ms
10,880 KB |
testcase_25 | AC | 30 ms
11,392 KB |
testcase_26 | AC | 77 ms
17,896 KB |
testcase_27 | AC | 27 ms
10,752 KB |
ソースコード
import sys N = int(input()) l = list(map(int, input().split())) M = int(input()) av = sum(l) / N # print(av) def f(x): return (x - av)**2 ll = list(map(f, l)) av2 = sum(ll) / N root = av2 ** 0.5 if root == 0: print(50) sys.exit() # print(root) div = abs(l[M - 1] - av) st3 = (div*10) / root if l[M - 1] >= av : print(50 + int(st3)) else: print(50 - int(st3))