結果

問題 No.1131 Deviation Score
ユーザー ABKZABKZ
提出日時 2021-09-29 21:58:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 115 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 88,820 KB
最終ジャッジ日時 2024-07-16 17:20:52
合計ジャッジ時間 3,377 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
70,356 KB
testcase_01 AC 51 ms
63,572 KB
testcase_02 AC 69 ms
87,280 KB
testcase_03 AC 58 ms
76,512 KB
testcase_04 AC 71 ms
85,712 KB
testcase_05 AC 55 ms
73,944 KB
testcase_06 AC 77 ms
87,204 KB
testcase_07 AC 59 ms
76,900 KB
testcase_08 AC 69 ms
85,672 KB
testcase_09 AC 57 ms
72,580 KB
testcase_10 AC 66 ms
84,244 KB
testcase_11 AC 68 ms
84,740 KB
testcase_12 AC 65 ms
83,124 KB
testcase_13 AC 71 ms
87,028 KB
testcase_14 AC 52 ms
70,056 KB
testcase_15 AC 50 ms
69,528 KB
testcase_16 AC 69 ms
85,372 KB
testcase_17 AC 54 ms
74,684 KB
testcase_18 AC 74 ms
88,820 KB
testcase_19 AC 37 ms
52,960 KB
testcase_20 AC 36 ms
52,144 KB
testcase_21 AC 35 ms
52,784 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