結果

問題 No.1131 Deviation Score
ユーザー 双六双六
提出日時 2020-08-05 15:45:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 394 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 88,832 KB
最終ジャッジ日時 2024-06-28 03:45:06
合計ジャッジ時間 2,568 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
71,424 KB
testcase_01 AC 55 ms
65,024 KB
testcase_02 AC 78 ms
87,168 KB
testcase_03 AC 62 ms
78,080 KB
testcase_04 AC 77 ms
85,572 KB
testcase_05 AC 60 ms
74,112 KB
testcase_06 AC 80 ms
87,552 KB
testcase_07 AC 64 ms
78,080 KB
testcase_08 AC 77 ms
85,728 KB
testcase_09 AC 61 ms
73,472 KB
testcase_10 AC 76 ms
84,864 KB
testcase_11 AC 76 ms
84,480 KB
testcase_12 AC 75 ms
83,552 KB
testcase_13 AC 80 ms
87,168 KB
testcase_14 AC 59 ms
69,888 KB
testcase_15 AC 58 ms
70,144 KB
testcase_16 AC 76 ms
85,996 KB
testcase_17 AC 60 ms
75,008 KB
testcase_18 AC 82 ms
88,832 KB
testcase_19 AC 44 ms
54,272 KB
testcase_20 AC 41 ms
53,760 KB
testcase_21 AC 40 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

#処理内容
def main():
	N = int(input())
	X = getlist()
	S = sum(X)
	for i in range(N):
		val = int((100 * N - S + N * X[i]) // (2 * N))
		print(val)

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