結果

問題 No.1131 Deviation Score
ユーザー 👑 KazunKazun
提出日時 2020-07-29 02:28:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 115 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 87,192 KB
実行使用メモリ 89,836 KB
最終ジャッジ日時 2023-09-10 12:20:16
合計ジャッジ時間 3,546 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
77,576 KB
testcase_01 AC 78 ms
76,728 KB
testcase_02 AC 92 ms
88,248 KB
testcase_03 AC 85 ms
80,144 KB
testcase_04 AC 92 ms
86,804 KB
testcase_05 AC 83 ms
78,244 KB
testcase_06 AC 95 ms
87,964 KB
testcase_07 AC 85 ms
79,868 KB
testcase_08 AC 92 ms
86,764 KB
testcase_09 AC 84 ms
78,440 KB
testcase_10 AC 89 ms
85,448 KB
testcase_11 AC 91 ms
85,464 KB
testcase_12 AC 88 ms
84,044 KB
testcase_13 AC 96 ms
88,104 KB
testcase_14 AC 80 ms
76,812 KB
testcase_15 AC 81 ms
76,824 KB
testcase_16 AC 93 ms
86,756 KB
testcase_17 AC 83 ms
78,800 KB
testcase_18 AC 100 ms
89,836 KB
testcase_19 AC 74 ms
71,312 KB
testcase_20 AC 72 ms
71,280 KB
testcase_21 AC 71 ms
71,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
X=list(map(int,input().split()))
A=sum(X)/N

print("\n".join(map(lambda x:str(int(50-(A-x)/2)),X)))
0