結果

問題 No.1131 Deviation Score
ユーザー ああいいああいい
提出日時 2022-04-19 23:09:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 126 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 87,080 KB
実行使用メモリ 90,136 KB
最終ジャッジ日時 2023-08-30 21:07:51
合計ジャッジ時間 4,014 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
77,736 KB
testcase_01 AC 83 ms
76,912 KB
testcase_02 AC 102 ms
88,348 KB
testcase_03 AC 93 ms
81,116 KB
testcase_04 AC 100 ms
86,980 KB
testcase_05 AC 88 ms
78,616 KB
testcase_06 AC 102 ms
88,424 KB
testcase_07 AC 92 ms
80,936 KB
testcase_08 AC 100 ms
86,684 KB
testcase_09 AC 86 ms
78,696 KB
testcase_10 AC 98 ms
85,760 KB
testcase_11 AC 98 ms
85,544 KB
testcase_12 AC 96 ms
84,344 KB
testcase_13 AC 102 ms
88,448 KB
testcase_14 AC 85 ms
77,200 KB
testcase_15 AC 85 ms
77,004 KB
testcase_16 AC 99 ms
86,952 KB
testcase_17 AC 87 ms
78,828 KB
testcase_18 AC 104 ms
90,136 KB
testcase_19 AC 69 ms
71,204 KB
testcase_20 AC 68 ms
71,264 KB
testcase_21 AC 67 ms
71,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

S = sum(x)
for i in x:
    ans = 50 - (S / N - i) / 2
    print(int(ans))
0