結果

問題 No.1131 Deviation Score
ユーザー YU HiroseYU Hirose
提出日時 2024-06-18 21:43:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 116 bytes
コンパイル時間 544 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 88,872 KB
最終ジャッジ日時 2024-06-18 21:43:20
合計ジャッジ時間 4,479 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
69,952 KB
testcase_01 AC 52 ms
63,004 KB
testcase_02 AC 78 ms
87,164 KB
testcase_03 AC 61 ms
76,636 KB
testcase_04 AC 75 ms
85,736 KB
testcase_05 AC 60 ms
73,808 KB
testcase_06 AC 88 ms
87,156 KB
testcase_07 AC 61 ms
77,508 KB
testcase_08 AC 75 ms
85,680 KB
testcase_09 AC 60 ms
73,100 KB
testcase_10 AC 72 ms
84,640 KB
testcase_11 AC 74 ms
84,488 KB
testcase_12 AC 70 ms
83,276 KB
testcase_13 AC 75 ms
87,376 KB
testcase_14 AC 54 ms
68,736 KB
testcase_15 AC 55 ms
70,320 KB
testcase_16 AC 73 ms
85,704 KB
testcase_17 AC 62 ms
75,308 KB
testcase_18 AC 80 ms
88,872 KB
testcase_19 AC 69 ms
54,252 KB
testcase_20 AC 38 ms
52,548 KB
testcase_21 AC 39 ms
52,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
ave = sum(a) / n
for x in a:
    print(int(50 - (ave - x) / 2))
0