結果
問題 | No.1738 What's in the box? |
ユーザー | Theta |
提出日時 | 2022-10-12 14:38:03 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 35 ms / 2,000 ms |
コード長 | 298 bytes |
コンパイル時間 | 260 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-06-26 09:07:43 |
合計ジャッジ時間 | 4,394 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 70 |
ソースコード
def main(): N, M = map(int, input().split()) W = list(map(int, input().split())) if M == 0: print(" ".join("0" for _ in range(N))) return sum_weight = sum(W) print(*map(lambda weight: round(M * weight / sum_weight), W)) if __name__ == "__main__": main()