結果
| 問題 | No.1738 What's in the box? |
| コンテスト | |
| ユーザー |
rlangevin
|
| 提出日時 | 2022-12-31 19:14:35 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 128 bytes |
| 記録 | |
| コンパイル時間 | 189 ms |
| コンパイル使用メモリ | 86,016 KB |
| 実行使用メモリ | 65,152 KB |
| 最終ジャッジ日時 | 2026-05-21 03:27:10 |
| 合計ジャッジ時間 | 4,766 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 68 RE * 2 |
ソースコード
N, M = map(int, input().split()) W = list(map(int, input().split())) S = sum(W) W = list(map(lambda x : x * M//S, W)) print(*W)
rlangevin