結果

問題 No.1131 Deviation Score
ユーザー ああいいああいい
提出日時 2022-04-19 23:09:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 126 bytes
コンパイル時間 1,700 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 88,884 KB
最終ジャッジ日時 2024-06-10 20:36:56
合計ジャッジ時間 2,840 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
70,632 KB
testcase_01 AC 47 ms
64,084 KB
testcase_02 AC 80 ms
86,908 KB
testcase_03 AC 55 ms
78,396 KB
testcase_04 AC 68 ms
85,524 KB
testcase_05 AC 53 ms
74,816 KB
testcase_06 AC 69 ms
86,884 KB
testcase_07 AC 60 ms
77,224 KB
testcase_08 AC 69 ms
85,704 KB
testcase_09 AC 58 ms
73,100 KB
testcase_10 AC 67 ms
84,100 KB
testcase_11 AC 64 ms
84,328 KB
testcase_12 AC 65 ms
83,160 KB
testcase_13 AC 71 ms
87,044 KB
testcase_14 AC 49 ms
68,940 KB
testcase_15 AC 50 ms
70,408 KB
testcase_16 AC 68 ms
85,716 KB
testcase_17 AC 54 ms
74,744 KB
testcase_18 AC 72 ms
88,884 KB
testcase_19 AC 36 ms
53,684 KB
testcase_20 AC 33 ms
52,284 KB
testcase_21 AC 34 ms
51,928 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