結果

問題 No.1131 Deviation Score
ユーザー otsunekootsuneko
提出日時 2021-05-14 15:20:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 109 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 89,012 KB
最終ジャッジ日時 2024-04-09 19:44:55
合計ジャッジ時間 2,537 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
70,768 KB
testcase_01 AC 48 ms
64,068 KB
testcase_02 AC 77 ms
87,204 KB
testcase_03 AC 62 ms
78,120 KB
testcase_04 AC 80 ms
85,484 KB
testcase_05 AC 59 ms
73,524 KB
testcase_06 AC 70 ms
87,116 KB
testcase_07 AC 57 ms
77,360 KB
testcase_08 AC 69 ms
85,552 KB
testcase_09 AC 54 ms
73,048 KB
testcase_10 AC 69 ms
84,384 KB
testcase_11 AC 66 ms
84,416 KB
testcase_12 AC 63 ms
83,044 KB
testcase_13 AC 70 ms
87,432 KB
testcase_14 AC 53 ms
69,624 KB
testcase_15 AC 52 ms
69,740 KB
testcase_16 AC 69 ms
85,568 KB
testcase_17 AC 54 ms
74,172 KB
testcase_18 AC 73 ms
89,012 KB
testcase_19 AC 38 ms
54,312 KB
testcase_20 AC 35 ms
52,488 KB
testcase_21 AC 35 ms
52,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = list(map(int,input().split()))
A = sum(X)/N

for x in X:
    print(int(50-(A-x)/2))
0