結果

問題 No.1131 Deviation Score
ユーザー hi-akegarasuhi-akegarasu
提出日時 2020-09-28 04:59:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 140 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 86,972 KB
実行使用メモリ 94,128 KB
最終ジャッジ日時 2023-09-10 12:32:07
合計ジャッジ時間 3,788 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
78,008 KB
testcase_01 AC 85 ms
76,820 KB
testcase_02 AC 110 ms
92,036 KB
testcase_03 AC 95 ms
82,224 KB
testcase_04 AC 108 ms
90,108 KB
testcase_05 AC 92 ms
79,204 KB
testcase_06 AC 109 ms
91,920 KB
testcase_07 AC 96 ms
82,368 KB
testcase_08 AC 107 ms
89,860 KB
testcase_09 AC 91 ms
78,956 KB
testcase_10 AC 107 ms
88,404 KB
testcase_11 AC 108 ms
88,732 KB
testcase_12 AC 108 ms
87,236 KB
testcase_13 AC 111 ms
91,900 KB
testcase_14 AC 87 ms
76,812 KB
testcase_15 AC 89 ms
77,068 KB
testcase_16 AC 108 ms
90,016 KB
testcase_17 AC 90 ms
79,800 KB
testcase_18 AC 115 ms
94,128 KB
testcase_19 AC 75 ms
71,200 KB
testcase_20 AC 73 ms
71,088 KB
testcase_21 AC 74 ms
71,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
n=int(input())
x=list(map(int, input().split()))
ave=sum(x)/n
print(*[math.floor(50-(ave-x[i])/2) for i in range(n)], sep="\n")
0