結果

問題 No.1738 What's in the box?
ユーザー lloyz
提出日時 2021-11-12 22:53:25
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 222 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-11-25 20:47:12
合計ジャッジ時間 4,619 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 48 WA * 20 RE * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal

n, m = map(Decimal, input().split())
W = list(map(Decimal, input().split()))

sumW = sum(W)
bw = sumW / m
ans = []
for i in range(int(n)):
    ans.append(int(W[i] / bw))
print(*ans)
0