結果

問題 No.1131 Deviation Score
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2021-07-03 19:46:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 138 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 10,640 KB
実行使用メモリ 15,172 KB
最終ジャッジ日時 2023-09-13 01:14:19
合計ジャッジ時間 3,372 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
9,576 KB
testcase_01 AC 18 ms
7,784 KB
testcase_02 AC 115 ms
14,172 KB
testcase_03 AC 61 ms
10,764 KB
testcase_04 AC 111 ms
13,832 KB
testcase_05 AC 48 ms
10,184 KB
testcase_06 AC 113 ms
14,052 KB
testcase_07 AC 62 ms
10,924 KB
testcase_08 AC 103 ms
13,608 KB
testcase_09 AC 47 ms
10,084 KB
testcase_10 AC 101 ms
13,232 KB
testcase_11 AC 102 ms
13,564 KB
testcase_12 AC 89 ms
12,732 KB
testcase_13 AC 113 ms
14,220 KB
testcase_14 AC 36 ms
9,308 KB
testcase_15 AC 36 ms
9,284 KB
testcase_16 AC 105 ms
13,664 KB
testcase_17 AC 52 ms
10,256 KB
testcase_18 AC 131 ms
15,172 KB
testcase_19 AC 16 ms
7,692 KB
testcase_20 AC 15 ms
7,760 KB
testcase_21 AC 15 ms
7,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
x = list(map(int, input().split()))
a = sum(x) / n

for i in range(n):
    ans = int(50 - (a - x[i]) / 2)
    print(ans)
0