結果

問題 No.1738 What's in the box?
ユーザー irumo8202
提出日時 2022-01-27 18:56:19
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 238 bytes
コンパイル時間 817 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-12-25 22:28:29
合計ジャッジ時間 5,937 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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)
wb = Decimal(sumW / M)

ans = [0] * int(N)
for i in range(int(N)):
    ans[i] = int(Decimal(W[i] / wb))

print(*ans)
0