結果

問題 No.1131 Deviation Score
ユーザー roarisroaris
提出日時 2020-07-27 22:11:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 149 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 86,796 KB
実行使用メモリ 89,812 KB
最終ジャッジ日時 2023-09-10 12:19:24
合計ジャッジ時間 3,646 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
77,648 KB
testcase_01 AC 87 ms
76,608 KB
testcase_02 AC 105 ms
88,064 KB
testcase_03 AC 93 ms
80,672 KB
testcase_04 AC 104 ms
86,500 KB
testcase_05 AC 90 ms
78,492 KB
testcase_06 AC 104 ms
88,060 KB
testcase_07 AC 94 ms
80,792 KB
testcase_08 AC 103 ms
86,644 KB
testcase_09 AC 90 ms
78,452 KB
testcase_10 AC 102 ms
85,424 KB
testcase_11 AC 99 ms
85,424 KB
testcase_12 AC 98 ms
84,112 KB
testcase_13 AC 105 ms
88,112 KB
testcase_14 AC 87 ms
76,984 KB
testcase_15 AC 87 ms
76,720 KB
testcase_16 AC 102 ms
86,540 KB
testcase_17 AC 88 ms
78,988 KB
testcase_18 AC 108 ms
89,812 KB
testcase_19 AC 74 ms
71,184 KB
testcase_20 AC 72 ms
71,136 KB
testcase_21 AC 72 ms
71,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
x = list(map(int, input().split()))
S = sum(x)

for xi in x:
    print((100*N-S+N*xi)//(2*N))
0