結果
| 問題 | No.1738 What's in the box? |
| コンテスト | |
| ユーザー |
titia
|
| 提出日時 | 2021-11-12 21:54:36 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 152 bytes |
| 記録 | |
| コンパイル時間 | 457 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 20,480 KB |
| 最終ジャッジ日時 | 2026-05-20 08:19:08 |
| 合計ジャッジ時間 | 9,860 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 63 WA * 5 RE * 2 |
ソースコード
import sys input = sys.stdin.readline N,M=map(int,input().split()) W=list(map(int,input().split())) x=M/sum(W) W2=[int(w*x) for w in W] print(*W2)
titia