結果

問題 No.1131 Deviation Score
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-08-24 10:04:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 126 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 165,812 KB
最終ジャッジ日時 2024-11-14 01:55:01
合計ジャッジ時間 40,818 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 WA -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 WA -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 WA -
testcase_15 WA -
testcase_16 TLE -
testcase_17 WA -
testcase_18 TLE -
testcase_19 WA -
testcase_20 AC 37 ms
52,244 KB
testcase_21 AC 34 ms
141,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
X = list(map(int,input().split()))
ans = []
for i in range(n):
    print(str(50 - (sum(X) // n - X[i]) // 2))
0