結果

問題 No.1738 What's in the box?
ユーザー brthyyjpbrthyyjp
提出日時 2021-11-12 21:32:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 199 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 60,188 KB
最終ジャッジ日時 2024-11-25 12:19:37
合計ジャッジ時間 4,840 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,428 KB
testcase_01 AC 33 ms
52,152 KB
testcase_02 AC 38 ms
52,616 KB
testcase_03 AC 39 ms
59,624 KB
testcase_04 AC 38 ms
60,188 KB
testcase_05 AC 38 ms
59,344 KB
testcase_06 AC 43 ms
59,728 KB
testcase_07 AC 39 ms
58,992 KB
testcase_08 AC 38 ms
58,624 KB
testcase_09 AC 38 ms
58,904 KB
testcase_10 AC 40 ms
59,052 KB
testcase_11 AC 39 ms
59,308 KB
testcase_12 AC 39 ms
58,724 KB
testcase_13 AC 33 ms
52,024 KB
testcase_14 AC 33 ms
52,424 KB
testcase_15 AC 33 ms
52,140 KB
testcase_16 AC 33 ms
52,696 KB
testcase_17 AC 32 ms
52,764 KB
testcase_18 AC 31 ms
52,480 KB
testcase_19 AC 33 ms
52,848 KB
testcase_20 AC 34 ms
52,804 KB
testcase_21 AC 32 ms
52,576 KB
testcase_22 AC 32 ms
51,752 KB
testcase_23 AC 32 ms
52,348 KB
testcase_24 AC 32 ms
53,160 KB
testcase_25 AC 34 ms
52,012 KB
testcase_26 AC 33 ms
51,684 KB
testcase_27 AC 32 ms
52,556 KB
testcase_28 AC 32 ms
53,032 KB
testcase_29 AC 35 ms
51,944 KB
testcase_30 AC 35 ms
52,216 KB
testcase_31 AC 35 ms
52,760 KB
testcase_32 AC 36 ms
53,948 KB
testcase_33 AC 37 ms
53,580 KB
testcase_34 AC 40 ms
60,012 KB
testcase_35 AC 35 ms
53,568 KB
testcase_36 AC 39 ms
59,648 KB
testcase_37 AC 38 ms
58,752 KB
testcase_38 AC 36 ms
59,336 KB
testcase_39 AC 35 ms
54,264 KB
testcase_40 AC 37 ms
59,692 KB
testcase_41 AC 40 ms
59,520 KB
testcase_42 AC 37 ms
60,044 KB
testcase_43 AC 37 ms
58,504 KB
testcase_44 AC 37 ms
59,040 KB
testcase_45 AC 41 ms
59,040 KB
testcase_46 AC 38 ms
59,568 KB
testcase_47 AC 40 ms
59,324 KB
testcase_48 AC 40 ms
59,088 KB
testcase_49 AC 40 ms
58,688 KB
testcase_50 AC 39 ms
58,700 KB
testcase_51 AC 39 ms
59,692 KB
testcase_52 AC 40 ms
59,880 KB
testcase_53 AC 34 ms
52,880 KB
testcase_54 AC 34 ms
53,036 KB
testcase_55 AC 34 ms
52,628 KB
testcase_56 AC 34 ms
52,984 KB
testcase_57 AC 34 ms
52,076 KB
testcase_58 AC 35 ms
53,436 KB
testcase_59 AC 35 ms
53,584 KB
testcase_60 AC 35 ms
52,680 KB
testcase_61 AC 36 ms
51,876 KB
testcase_62 AC 35 ms
52,480 KB
testcase_63 AC 35 ms
52,832 KB
testcase_64 AC 32 ms
53,012 KB
testcase_65 AC 33 ms
51,620 KB
testcase_66 AC 37 ms
51,740 KB
testcase_67 AC 36 ms
53,272 KB
testcase_68 AC 37 ms
52,376 KB
testcase_69 AC 36 ms
52,028 KB
testcase_70 AC 34 ms
52,608 KB
testcase_71 AC 36 ms
52,100 KB
testcase_72 AC 36 ms
52,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int, input().split())
W = list(map(int, input().split()))
S = sum(W)
if S == 0 or m == 0:
    print(*[0]*n)
    exit()
ans = [0]*n
for i, w in enumerate(W):
    ans[i] = w*m//S
print(*ans)
0