結果

問題 No.1131 Deviation Score
ユーザー disneyresidentsdisneyresidents
提出日時 2020-10-23 19:44:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 127 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 86,944 KB
実行使用メモリ 90,176 KB
最終ジャッジ日時 2023-09-10 12:33:07
合計ジャッジ時間 3,755 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
77,836 KB
testcase_01 AC 86 ms
76,796 KB
testcase_02 AC 106 ms
88,496 KB
testcase_03 AC 92 ms
81,008 KB
testcase_04 AC 103 ms
86,812 KB
testcase_05 AC 89 ms
78,676 KB
testcase_06 AC 104 ms
88,412 KB
testcase_07 AC 92 ms
81,120 KB
testcase_08 AC 101 ms
86,784 KB
testcase_09 AC 88 ms
78,348 KB
testcase_10 AC 101 ms
85,568 KB
testcase_11 AC 101 ms
85,740 KB
testcase_12 AC 100 ms
84,468 KB
testcase_13 AC 105 ms
88,216 KB
testcase_14 AC 86 ms
76,972 KB
testcase_15 AC 86 ms
77,192 KB
testcase_16 AC 102 ms
86,884 KB
testcase_17 AC 89 ms
79,124 KB
testcase_18 AC 108 ms
90,176 KB
testcase_19 AC 73 ms
71,312 KB
testcase_20 AC 70 ms
71,136 KB
testcase_21 AC 71 ms
71,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
x = list(map(int, input().split()))
ave = sum(x) / N

for i in x:
    a = (ave - i) / 2
    print(int(50 - a))
0