結果

問題 No.1131 Deviation Score
ユーザー titiatitia
提出日時 2023-10-31 03:59:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 97 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 11,792 KB
実行使用メモリ 17,248 KB
最終ジャッジ日時 2023-10-31 03:59:16
合計ジャッジ時間 4,285 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
11,516 KB
testcase_01 AC 32 ms
10,116 KB
testcase_02 AC 131 ms
16,060 KB
testcase_03 AC 90 ms
12,920 KB
testcase_04 AC 122 ms
15,664 KB
testcase_05 AC 65 ms
12,188 KB
testcase_06 AC 127 ms
16,000 KB
testcase_07 AC 79 ms
13,008 KB
testcase_08 AC 121 ms
15,368 KB
testcase_09 AC 62 ms
11,920 KB
testcase_10 AC 142 ms
15,304 KB
testcase_11 AC 115 ms
15,468 KB
testcase_12 AC 105 ms
14,648 KB
testcase_13 AC 127 ms
15,988 KB
testcase_14 AC 50 ms
11,204 KB
testcase_15 AC 50 ms
11,184 KB
testcase_16 AC 120 ms
15,508 KB
testcase_17 AC 66 ms
12,088 KB
testcase_18 AC 147 ms
17,248 KB
testcase_19 AC 30 ms
10,012 KB
testcase_20 AC 30 ms
9,968 KB
testcase_21 AC 39 ms
9,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
S=sum(A)/N
for a in A:
    print(int(50-(S-a)/2))
0