結果

問題 No.1131 Deviation Score
ユーザー colognecologne
提出日時 2023-07-14 12:37:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 729 ms / 2,000 ms
コード長 217 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 17,280 KB
最終ジャッジ日時 2024-09-15 21:46:39
合計ジャッジ時間 10,115 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 183 ms
12,416 KB
testcase_01 AC 47 ms
11,392 KB
testcase_02 AC 641 ms
16,264 KB
testcase_03 AC 319 ms
13,440 KB
testcase_04 AC 603 ms
16,040 KB
testcase_05 AC 236 ms
12,800 KB
testcase_06 AC 645 ms
16,304 KB
testcase_07 AC 317 ms
13,512 KB
testcase_08 AC 556 ms
15,824 KB
testcase_09 AC 224 ms
12,800 KB
testcase_10 AC 547 ms
15,416 KB
testcase_11 AC 567 ms
15,664 KB
testcase_12 AC 494 ms
14,964 KB
testcase_13 AC 632 ms
16,292 KB
testcase_14 AC 156 ms
12,416 KB
testcase_15 AC 152 ms
12,288 KB
testcase_16 AC 571 ms
15,788 KB
testcase_17 AC 246 ms
12,928 KB
testcase_18 AC 729 ms
17,280 KB
testcase_19 AC 37 ms
11,264 KB
testcase_20 AC 34 ms
11,264 KB
testcase_21 AC 33 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from fractions import Fraction


def main():
    N = int(input())
    *X, = map(int, input().split())
    A = Fraction(sum(X), N)
    for x in X:
        print(int(50-(A-x)/2))


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