結果

問題 No.1131 Deviation Score
ユーザー ABKZABKZ
提出日時 2021-09-29 21:58:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 115 bytes
コンパイル時間 2,672 ms
コンパイル使用メモリ 86,684 KB
実行使用メモリ 89,932 KB
最終ジャッジ日時 2023-09-23 17:27:56
合計ジャッジ時間 3,749 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
77,664 KB
testcase_01 AC 85 ms
76,688 KB
testcase_02 AC 106 ms
88,052 KB
testcase_03 AC 97 ms
80,936 KB
testcase_04 AC 105 ms
86,904 KB
testcase_05 AC 90 ms
78,528 KB
testcase_06 AC 107 ms
88,148 KB
testcase_07 AC 96 ms
80,748 KB
testcase_08 AC 103 ms
86,668 KB
testcase_09 AC 90 ms
78,508 KB
testcase_10 AC 103 ms
85,208 KB
testcase_11 AC 103 ms
85,408 KB
testcase_12 AC 99 ms
84,228 KB
testcase_13 AC 106 ms
88,032 KB
testcase_14 AC 87 ms
76,880 KB
testcase_15 AC 87 ms
77,012 KB
testcase_16 AC 103 ms
86,836 KB
testcase_17 AC 91 ms
78,996 KB
testcase_18 AC 114 ms
89,932 KB
testcase_19 AC 75 ms
70,896 KB
testcase_20 AC 74 ms
71,132 KB
testcase_21 AC 72 ms
70,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

A = sum(x) / N

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