結果

問題 No.1131 Deviation Score
ユーザー koba-e964koba-e964
提出日時 2021-11-29 22:01:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 86,572 KB
実行使用メモリ 89,680 KB
最終ジャッジ日時 2023-09-15 09:42:02
合計ジャッジ時間 3,749 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
77,268 KB
testcase_01 AC 87 ms
76,316 KB
testcase_02 AC 106 ms
87,808 KB
testcase_03 AC 94 ms
80,232 KB
testcase_04 AC 106 ms
86,548 KB
testcase_05 AC 91 ms
77,864 KB
testcase_06 AC 107 ms
87,696 KB
testcase_07 AC 93 ms
80,124 KB
testcase_08 AC 104 ms
86,440 KB
testcase_09 AC 91 ms
78,068 KB
testcase_10 AC 102 ms
85,092 KB
testcase_11 AC 104 ms
85,236 KB
testcase_12 AC 100 ms
84,104 KB
testcase_13 AC 108 ms
87,844 KB
testcase_14 AC 90 ms
76,396 KB
testcase_15 AC 89 ms
76,732 KB
testcase_16 AC 104 ms
86,440 KB
testcase_17 AC 93 ms
78,492 KB
testcase_18 AC 110 ms
89,680 KB
testcase_19 AC 78 ms
71,012 KB
testcase_20 AC 74 ms
71,060 KB
testcase_21 AC 74 ms
70,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import sys
readline = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

n = int(readline())
a = list(map(int, readline().split()))

s = sum(a)
for i in range(n):
    print(((100 + a[i]) * n - s) // (2 * n))
0