結果

問題 No.1131 Deviation Score
ユーザー TakaTaka
提出日時 2023-12-19 15:21:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 98,288 KB
最終ジャッジ日時 2023-12-19 15:21:22
合計ジャッジ時間 2,858 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
72,600 KB
testcase_01 AC 51 ms
64,596 KB
testcase_02 AC 84 ms
95,384 KB
testcase_03 AC 63 ms
80,368 KB
testcase_04 AC 87 ms
92,940 KB
testcase_05 AC 61 ms
76,096 KB
testcase_06 AC 86 ms
95,188 KB
testcase_07 AC 77 ms
82,320 KB
testcase_08 AC 82 ms
92,628 KB
testcase_09 AC 57 ms
76,044 KB
testcase_10 AC 77 ms
90,712 KB
testcase_11 AC 77 ms
90,828 KB
testcase_12 AC 74 ms
88,712 KB
testcase_13 AC 82 ms
95,168 KB
testcase_14 AC 52 ms
71,156 KB
testcase_15 AC 53 ms
71,148 KB
testcase_16 AC 80 ms
92,716 KB
testcase_17 AC 58 ms
76,840 KB
testcase_18 AC 87 ms
98,288 KB
testcase_19 AC 39 ms
53,332 KB
testcase_20 AC 37 ms
53,332 KB
testcase_21 AC 46 ms
53,332 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