結果
| 問題 |
No.1738 What's in the box?
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-01-27 18:59:08 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 276 bytes |
| コンパイル時間 | 493 ms |
| コンパイル使用メモリ | 82,176 KB |
| 実行使用メモリ | 82,944 KB |
| 最終ジャッジ日時 | 2024-12-25 22:32:51 |
| 合計ジャッジ時間 | 16,824 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 50 WA * 20 |
ソースコード
from decimal import Decimal
N, M = map(Decimal, input().split())
W = list(map(Decimal, input().split()))
ans = [0] * int(N)
if M == 0:
print(*ans)
exit()
sumW = sum(W)
wb = Decimal(sumW / M)
for i in range(int(N)):
ans[i] = int(Decimal(W[i] / wb))
print(*ans)