結果

問題 No.1131 Deviation Score
ユーザー etale.K3etale.K3
提出日時 2021-09-10 09:28:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 103 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 10,628 KB
実行使用メモリ 15,020 KB
最終ジャッジ日時 2023-08-30 20:01:50
合計ジャッジ時間 2,854 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
9,568 KB
testcase_01 AC 17 ms
7,876 KB
testcase_02 AC 109 ms
14,184 KB
testcase_03 AC 56 ms
10,896 KB
testcase_04 AC 101 ms
13,856 KB
testcase_05 AC 47 ms
10,180 KB
testcase_06 AC 107 ms
14,076 KB
testcase_07 AC 60 ms
11,000 KB
testcase_08 AC 95 ms
13,564 KB
testcase_09 AC 45 ms
10,012 KB
testcase_10 AC 90 ms
13,324 KB
testcase_11 AC 95 ms
13,436 KB
testcase_12 AC 83 ms
12,724 KB
testcase_13 AC 106 ms
13,984 KB
testcase_14 AC 34 ms
9,160 KB
testcase_15 AC 34 ms
9,252 KB
testcase_16 AC 97 ms
13,576 KB
testcase_17 AC 47 ms
10,096 KB
testcase_18 AC 120 ms
15,020 KB
testcase_19 AC 16 ms
7,932 KB
testcase_20 AC 15 ms
7,768 KB
testcase_21 AC 15 ms
7,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))

V = sum(A)/N

for a in A:
  print(int(50-(V-a)/2))
0