結果

問題 No.1131 Deviation Score
ユーザー TakaTaka
提出日時 2023-12-19 15:21:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 98,900 KB
最終ジャッジ日時 2024-09-27 08:52:47
合計ジャッジ時間 2,747 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
74,304 KB
testcase_01 AC 50 ms
63,096 KB
testcase_02 AC 84 ms
96,036 KB
testcase_03 AC 63 ms
80,772 KB
testcase_04 AC 81 ms
93,604 KB
testcase_05 AC 57 ms
75,912 KB
testcase_06 AC 86 ms
95,520 KB
testcase_07 AC 67 ms
83,168 KB
testcase_08 AC 83 ms
92,840 KB
testcase_09 AC 58 ms
76,708 KB
testcase_10 AC 76 ms
91,108 KB
testcase_11 AC 80 ms
91,148 KB
testcase_12 AC 76 ms
89,272 KB
testcase_13 AC 82 ms
95,852 KB
testcase_14 AC 54 ms
71,076 KB
testcase_15 AC 55 ms
70,320 KB
testcase_16 AC 78 ms
93,336 KB
testcase_17 AC 60 ms
78,056 KB
testcase_18 AC 86 ms
98,900 KB
testcase_19 AC 38 ms
54,124 KB
testcase_20 AC 36 ms
52,200 KB
testcase_21 AC 38 ms
51,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# Problem Link: https://yukicoder.me/problems/no/1131
# Submission  :

# input
N = int(input())
points = list(map(int,input().split()))
point_mean = sum(points)/N
ans_list = []

# Calculation
for i in range(N):
    ans_list.append(int(50 - (point_mean - points[i]) / 2))

# Output
print(*ans_list,sep='\n')
0