結果

問題 No.1131 Deviation Score
ユーザー pypypymipypypymi
提出日時 2022-02-18 15:23:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 126 bytes
コンパイル時間 556 ms
コンパイル使用メモリ 86,868 KB
実行使用メモリ 89,944 KB
最終ジャッジ日時 2023-09-11 18:12:01
合計ジャッジ時間 4,063 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
77,544 KB
testcase_01 AC 91 ms
76,656 KB
testcase_02 AC 111 ms
88,096 KB
testcase_03 AC 99 ms
80,808 KB
testcase_04 AC 109 ms
86,632 KB
testcase_05 AC 95 ms
78,252 KB
testcase_06 AC 111 ms
88,112 KB
testcase_07 AC 99 ms
80,744 KB
testcase_08 AC 107 ms
86,664 KB
testcase_09 AC 94 ms
78,260 KB
testcase_10 AC 105 ms
85,564 KB
testcase_11 AC 106 ms
85,296 KB
testcase_12 AC 103 ms
84,368 KB
testcase_13 AC 109 ms
88,072 KB
testcase_14 AC 91 ms
76,924 KB
testcase_15 AC 91 ms
76,764 KB
testcase_16 AC 107 ms
86,464 KB
testcase_17 AC 93 ms
78,848 KB
testcase_18 AC 111 ms
89,944 KB
testcase_19 AC 75 ms
71,196 KB
testcase_20 AC 75 ms
71,168 KB
testcase_21 AC 74 ms
71,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
xn = list(map(int,input().split()))
xn_ave = sum(xn)/len(xn)
for xi in xn:
    print(int(50-((xn_ave-xi)/2)))
0