結果

問題 No.1131 Deviation Score
ユーザー gorugo30gorugo30
提出日時 2021-02-23 15:27:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 122 bytes
コンパイル時間 486 ms
コンパイル使用メモリ 82,844 KB
実行使用メモリ 89,224 KB
最終ジャッジ日時 2024-09-22 11:08:03
合計ジャッジ時間 3,811 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
71,124 KB
testcase_01 AC 51 ms
63,752 KB
testcase_02 AC 74 ms
87,160 KB
testcase_03 AC 60 ms
77,804 KB
testcase_04 AC 72 ms
85,980 KB
testcase_05 AC 56 ms
73,524 KB
testcase_06 AC 74 ms
86,956 KB
testcase_07 AC 59 ms
76,688 KB
testcase_08 AC 71 ms
85,480 KB
testcase_09 AC 56 ms
73,512 KB
testcase_10 AC 70 ms
84,736 KB
testcase_11 AC 70 ms
84,272 KB
testcase_12 AC 69 ms
83,048 KB
testcase_13 AC 74 ms
87,264 KB
testcase_14 AC 54 ms
69,220 KB
testcase_15 AC 54 ms
70,244 KB
testcase_16 AC 72 ms
85,504 KB
testcase_17 AC 57 ms
74,128 KB
testcase_18 AC 78 ms
89,224 KB
testcase_19 AC 39 ms
54,324 KB
testcase_20 AC 37 ms
51,880 KB
testcase_21 AC 36 ms
52,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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