結果

問題 No.1131 Deviation Score
ユーザー miya145592miya145592
提出日時 2023-04-30 23:36:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 122 bytes
コンパイル時間 639 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 88,916 KB
最終ジャッジ日時 2024-11-19 13:13:04
合計ジャッジ時間 3,779 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
70,224 KB
testcase_01 AC 46 ms
64,708 KB
testcase_02 AC 70 ms
87,128 KB
testcase_03 AC 55 ms
76,676 KB
testcase_04 AC 67 ms
85,600 KB
testcase_05 AC 53 ms
73,008 KB
testcase_06 AC 70 ms
87,108 KB
testcase_07 AC 58 ms
77,144 KB
testcase_08 AC 69 ms
85,552 KB
testcase_09 AC 55 ms
72,456 KB
testcase_10 AC 69 ms
84,444 KB
testcase_11 AC 67 ms
84,268 KB
testcase_12 AC 66 ms
83,124 KB
testcase_13 AC 71 ms
87,096 KB
testcase_14 AC 51 ms
69,460 KB
testcase_15 AC 49 ms
68,684 KB
testcase_16 AC 70 ms
85,848 KB
testcase_17 AC 55 ms
73,704 KB
testcase_18 AC 74 ms
88,916 KB
testcase_19 AC 39 ms
54,428 KB
testcase_20 AC 35 ms
53,224 KB
testcase_21 AC 36 ms
52,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
x = list(map(int, input().split()))
S = sum(x)
A = S/N
for xx in x:
    d = int(50-(A-xx)/2)
    print(d)
0