結果

問題 No.1131 Deviation Score
ユーザー dangodango
提出日時 2023-06-05 16:49:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 136 bytes
コンパイル時間 69 ms
コンパイル使用メモリ 10,692 KB
実行使用メモリ 15,176 KB
最終ジャッジ日時 2023-08-28 09:38:26
合計ジャッジ時間 3,864 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
9,780 KB
testcase_01 AC 16 ms
7,840 KB
testcase_02 AC 117 ms
14,252 KB
testcase_03 AC 61 ms
10,960 KB
testcase_04 AC 105 ms
13,908 KB
testcase_05 AC 48 ms
10,264 KB
testcase_06 AC 114 ms
14,136 KB
testcase_07 AC 63 ms
10,980 KB
testcase_08 AC 100 ms
13,624 KB
testcase_09 AC 47 ms
9,972 KB
testcase_10 AC 98 ms
13,248 KB
testcase_11 AC 100 ms
13,640 KB
testcase_12 AC 92 ms
12,908 KB
testcase_13 AC 112 ms
14,168 KB
testcase_14 AC 35 ms
9,216 KB
testcase_15 AC 34 ms
9,256 KB
testcase_16 AC 103 ms
13,676 KB
testcase_17 AC 50 ms
10,244 KB
testcase_18 AC 130 ms
15,176 KB
testcase_19 AC 16 ms
7,856 KB
testcase_20 AC 15 ms
7,816 KB
testcase_21 AC 15 ms
7,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = list(map(int, input().split()))
A = sum(X) / len(X)
for I in range(0, N):
  D = int(50 - (A - X[I]) / 2)
  print(D)
0