結果

問題 No.1131 Deviation Score
ユーザー otsunekootsuneko
提出日時 2021-05-14 15:20:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 109 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 88,576 KB
最終ジャッジ日時 2024-10-01 19:58:26
合計ジャッジ時間 2,751 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
69,504 KB
testcase_01 AC 54 ms
62,848 KB
testcase_02 AC 76 ms
87,040 KB
testcase_03 AC 61 ms
76,416 KB
testcase_04 AC 76 ms
85,532 KB
testcase_05 AC 58 ms
72,192 KB
testcase_06 AC 77 ms
86,528 KB
testcase_07 AC 62 ms
76,544 KB
testcase_08 AC 74 ms
85,120 KB
testcase_09 AC 59 ms
71,936 KB
testcase_10 AC 72 ms
83,968 KB
testcase_11 AC 74 ms
84,224 KB
testcase_12 AC 70 ms
82,816 KB
testcase_13 AC 77 ms
87,040 KB
testcase_14 AC 56 ms
68,224 KB
testcase_15 AC 57 ms
68,224 KB
testcase_16 AC 76 ms
84,992 KB
testcase_17 AC 60 ms
73,216 KB
testcase_18 AC 81 ms
88,576 KB
testcase_19 AC 42 ms
52,480 KB
testcase_20 AC 41 ms
51,712 KB
testcase_21 AC 40 ms
51,456 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