結果

問題 No.1131 Deviation Score
ユーザー ああいいああいい
提出日時 2022-04-19 23:09:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 126 bytes
コンパイル時間 832 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 89,088 KB
最終ジャッジ日時 2025-01-02 17:57:44
合計ジャッジ時間 3,493 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
70,912 KB
testcase_01 AC 57 ms
63,232 KB
testcase_02 AC 85 ms
87,168 KB
testcase_03 AC 67 ms
77,568 KB
testcase_04 AC 82 ms
85,760 KB
testcase_05 AC 60 ms
73,472 KB
testcase_06 AC 81 ms
87,040 KB
testcase_07 AC 64 ms
77,824 KB
testcase_08 AC 80 ms
85,632 KB
testcase_09 AC 62 ms
72,960 KB
testcase_10 AC 77 ms
84,224 KB
testcase_11 AC 78 ms
84,480 KB
testcase_12 AC 76 ms
83,328 KB
testcase_13 AC 80 ms
87,424 KB
testcase_14 AC 58 ms
69,248 KB
testcase_15 AC 57 ms
69,120 KB
testcase_16 AC 81 ms
85,632 KB
testcase_17 AC 59 ms
74,368 KB
testcase_18 AC 84 ms
89,088 KB
testcase_19 AC 44 ms
52,864 KB
testcase_20 AC 39 ms
51,968 KB
testcase_21 AC 41 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

S = sum(x)
for i in x:
    ans = 50 - (S / N - i) / 2
    print(int(ans))
0