結果

問題 No.1131 Deviation Score
ユーザー miya145592miya145592
提出日時 2023-04-30 23:36:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 122 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 88,704 KB
最終ジャッジ日時 2024-04-30 02:07:02
合計ジャッジ時間 3,360 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
70,016 KB
testcase_01 AC 54 ms
62,976 KB
testcase_02 AC 80 ms
87,032 KB
testcase_03 AC 63 ms
76,416 KB
testcase_04 AC 76 ms
85,632 KB
testcase_05 AC 65 ms
72,704 KB
testcase_06 AC 79 ms
87,168 KB
testcase_07 AC 63 ms
76,928 KB
testcase_08 AC 76 ms
85,700 KB
testcase_09 AC 60 ms
72,576 KB
testcase_10 AC 74 ms
84,096 KB
testcase_11 AC 75 ms
84,736 KB
testcase_12 AC 74 ms
82,944 KB
testcase_13 AC 79 ms
87,376 KB
testcase_14 AC 57 ms
68,736 KB
testcase_15 AC 58 ms
68,480 KB
testcase_16 AC 77 ms
85,376 KB
testcase_17 AC 61 ms
73,600 KB
testcase_18 AC 81 ms
88,704 KB
testcase_19 AC 42 ms
52,352 KB
testcase_20 AC 39 ms
51,712 KB
testcase_21 AC 39 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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