結果

問題 No.1131 Deviation Score
ユーザー mlihua09mlihua09
提出日時 2020-08-24 13:06:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 133 bytes
コンパイル時間 674 ms
コンパイル使用メモリ 86,888 KB
実行使用メモリ 89,752 KB
最終ジャッジ日時 2023-09-10 12:30:06
合計ジャッジ時間 4,229 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
77,308 KB
testcase_01 AC 89 ms
76,652 KB
testcase_02 AC 109 ms
87,980 KB
testcase_03 AC 101 ms
80,748 KB
testcase_04 AC 108 ms
86,320 KB
testcase_05 AC 94 ms
78,008 KB
testcase_06 AC 111 ms
88,004 KB
testcase_07 AC 99 ms
80,492 KB
testcase_08 AC 108 ms
86,516 KB
testcase_09 AC 99 ms
78,200 KB
testcase_10 AC 108 ms
85,040 KB
testcase_11 AC 104 ms
84,928 KB
testcase_12 AC 103 ms
84,188 KB
testcase_13 AC 109 ms
87,744 KB
testcase_14 AC 92 ms
76,716 KB
testcase_15 AC 93 ms
76,728 KB
testcase_16 AC 106 ms
86,224 KB
testcase_17 AC 95 ms
78,632 KB
testcase_18 AC 113 ms
89,752 KB
testcase_19 AC 80 ms
71,032 KB
testcase_20 AC 78 ms
71,148 KB
testcase_21 AC 84 ms
71,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #



N = int(input())

X = list(map(int, input().split()))

A = sum(X) / N

for x in X:
    
    print(int(50 - (A - x) / 2))
    
    
0