結果

問題 No.1738 What's in the box?
ユーザー roarisroaris
提出日時 2021-11-12 21:39:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 61,812 KB
最終ジャッジ日時 2024-11-25 17:32:55
合計ジャッジ時間 4,653 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,796 KB
testcase_01 AC 38 ms
54,048 KB
testcase_02 AC 38 ms
53,992 KB
testcase_03 AC 44 ms
61,812 KB
testcase_04 AC 44 ms
60,416 KB
testcase_05 AC 45 ms
60,464 KB
testcase_06 AC 44 ms
59,908 KB
testcase_07 AC 45 ms
61,356 KB
testcase_08 AC 44 ms
60,844 KB
testcase_09 AC 45 ms
60,720 KB
testcase_10 AC 43 ms
60,600 KB
testcase_11 AC 44 ms
60,680 KB
testcase_12 AC 43 ms
60,704 KB
testcase_13 AC 38 ms
53,560 KB
testcase_14 AC 40 ms
53,812 KB
testcase_15 AC 39 ms
54,248 KB
testcase_16 AC 39 ms
53,936 KB
testcase_17 AC 39 ms
53,556 KB
testcase_18 AC 39 ms
53,628 KB
testcase_19 AC 38 ms
53,380 KB
testcase_20 AC 38 ms
54,948 KB
testcase_21 AC 39 ms
53,804 KB
testcase_22 AC 38 ms
54,404 KB
testcase_23 AC 37 ms
53,448 KB
testcase_24 AC 39 ms
54,208 KB
testcase_25 AC 37 ms
53,872 KB
testcase_26 AC 35 ms
53,820 KB
testcase_27 AC 36 ms
54,268 KB
testcase_28 AC 37 ms
53,992 KB
testcase_29 AC 37 ms
54,712 KB
testcase_30 AC 39 ms
53,896 KB
testcase_31 AC 37 ms
55,152 KB
testcase_32 AC 37 ms
54,688 KB
testcase_33 AC 42 ms
55,932 KB
testcase_34 AC 44 ms
60,416 KB
testcase_35 AC 38 ms
55,152 KB
testcase_36 AC 39 ms
55,592 KB
testcase_37 AC 39 ms
54,940 KB
testcase_38 AC 44 ms
61,020 KB
testcase_39 AC 40 ms
55,288 KB
testcase_40 AC 45 ms
60,228 KB
testcase_41 AC 43 ms
60,864 KB
testcase_42 AC 44 ms
59,980 KB
testcase_43 AC 46 ms
61,160 KB
testcase_44 AC 45 ms
60,336 KB
testcase_45 AC 44 ms
60,576 KB
testcase_46 AC 44 ms
60,172 KB
testcase_47 AC 45 ms
59,984 KB
testcase_48 AC 43 ms
60,616 KB
testcase_49 AC 42 ms
60,656 KB
testcase_50 AC 44 ms
60,688 KB
testcase_51 AC 44 ms
60,528 KB
testcase_52 AC 44 ms
61,468 KB
testcase_53 AC 39 ms
53,228 KB
testcase_54 AC 39 ms
53,228 KB
testcase_55 AC 39 ms
54,492 KB
testcase_56 AC 39 ms
54,260 KB
testcase_57 AC 39 ms
54,676 KB
testcase_58 AC 36 ms
53,684 KB
testcase_59 AC 36 ms
53,252 KB
testcase_60 AC 35 ms
54,388 KB
testcase_61 AC 36 ms
53,652 KB
testcase_62 AC 35 ms
54,728 KB
testcase_63 AC 38 ms
54,328 KB
testcase_64 AC 37 ms
53,456 KB
testcase_65 AC 36 ms
54,440 KB
testcase_66 AC 36 ms
53,816 KB
testcase_67 AC 37 ms
54,356 KB
testcase_68 AC 36 ms
54,160 KB
testcase_69 AC 37 ms
54,060 KB
testcase_70 AC 37 ms
53,760 KB
testcase_71 AC 38 ms
54,536 KB
testcase_72 AC 39 ms
55,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N, M = map(int, input().split())
W = list(map(int, input().split()))
S = sum(W)

if S==0:
    exit(print(*[0 for _ in range(N)]))
    
ans = [M*Wi//S for Wi in W]
print(*ans)
0