結果

問題 No.1131 Deviation Score
ユーザー ThetaTheta
提出日時 2022-10-20 16:31:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 357 bytes
コンパイル時間 114 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 16,736 KB
最終ジャッジ日時 2024-06-30 08:58:11
合計ジャッジ時間 3,843 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
11,904 KB
testcase_01 AC 33 ms
11,008 KB
testcase_02 AC 120 ms
15,844 KB
testcase_03 AC 72 ms
13,180 KB
testcase_04 AC 114 ms
15,344 KB
testcase_05 AC 65 ms
12,544 KB
testcase_06 AC 124 ms
15,872 KB
testcase_07 AC 75 ms
13,220 KB
testcase_08 AC 111 ms
15,104 KB
testcase_09 AC 60 ms
12,416 KB
testcase_10 AC 110 ms
15,104 KB
testcase_11 AC 114 ms
15,100 KB
testcase_12 AC 101 ms
14,444 KB
testcase_13 AC 121 ms
15,868 KB
testcase_14 AC 48 ms
11,776 KB
testcase_15 AC 49 ms
11,776 KB
testcase_16 AC 114 ms
15,204 KB
testcase_17 AC 63 ms
12,544 KB
testcase_18 AC 138 ms
16,736 KB
testcase_19 AC 31 ms
10,624 KB
testcase_20 AC 30 ms
10,752 KB
testcase_21 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import floor


def calc_rough_deviation_score(score: int, average: float) -> float:
    return 50 - (average - score) / 2


def main():
    N = int(input())
    x = list(map(int, input().split()))
    average = sum(x) / N
    for score in x:
        print(floor(calc_rough_deviation_score(score, average)))


if __name__ == "__main__":
    main()
0