結果

問題 No.1131 Deviation Score
ユーザー koba-e964koba-e964
提出日時 2021-11-29 22:01:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 88,704 KB
最終ジャッジ日時 2024-07-02 13:39:56
合計ジャッジ時間 2,815 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
69,376 KB
testcase_01 AC 56 ms
62,464 KB
testcase_02 AC 87 ms
87,168 KB
testcase_03 AC 69 ms
75,904 KB
testcase_04 AC 84 ms
85,504 KB
testcase_05 AC 66 ms
71,808 KB
testcase_06 AC 85 ms
86,912 KB
testcase_07 AC 71 ms
75,904 KB
testcase_08 AC 82 ms
85,504 KB
testcase_09 AC 65 ms
71,680 KB
testcase_10 AC 81 ms
84,096 KB
testcase_11 AC 82 ms
84,224 KB
testcase_12 AC 80 ms
82,944 KB
testcase_13 AC 86 ms
87,040 KB
testcase_14 AC 63 ms
68,352 KB
testcase_15 AC 63 ms
68,096 KB
testcase_16 AC 83 ms
85,504 KB
testcase_17 AC 66 ms
72,704 KB
testcase_18 AC 87 ms
88,704 KB
testcase_19 AC 42 ms
52,608 KB
testcase_20 AC 40 ms
51,584 KB
testcase_21 AC 40 ms
51,712 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