結果

問題 No.1131 Deviation Score
ユーザー chocopuuchocopuu
提出日時 2020-07-27 00:48:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 135 bytes
コンパイル時間 757 ms
コンパイル使用メモリ 10,460 KB
実行使用メモリ 15,064 KB
最終ジャッジ日時 2023-09-10 12:17:46
合計ジャッジ時間 3,213 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
9,692 KB
testcase_01 AC 18 ms
7,732 KB
testcase_02 AC 118 ms
14,352 KB
testcase_03 AC 62 ms
10,920 KB
testcase_04 AC 109 ms
13,748 KB
testcase_05 AC 50 ms
10,088 KB
testcase_06 AC 116 ms
14,144 KB
testcase_07 AC 63 ms
10,844 KB
testcase_08 AC 105 ms
13,448 KB
testcase_09 AC 49 ms
10,100 KB
testcase_10 AC 99 ms
13,388 KB
testcase_11 AC 104 ms
13,416 KB
testcase_12 AC 92 ms
12,720 KB
testcase_13 AC 115 ms
14,136 KB
testcase_14 AC 36 ms
9,396 KB
testcase_15 AC 36 ms
9,260 KB
testcase_16 AC 106 ms
13,652 KB
testcase_17 AC 52 ms
10,244 KB
testcase_18 AC 131 ms
15,064 KB
testcase_19 AC 17 ms
7,756 KB
testcase_20 AC 16 ms
7,876 KB
testcase_21 AC 16 ms
7,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
a = list(map(int, input().split()))
ave = 0
for e in a : ave += e
ave /= N
for e in a : print(int(50 - (ave - e) / 2))
0