結果

問題 No.1738 What's in the box?
ユーザー shinichishinichi
提出日時 2021-11-13 19:53:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 248 ms / 2,000 ms
コード長 398 bytes
コンパイル時間 784 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 83,200 KB
最終ジャッジ日時 2024-11-27 20:29:29
合計ジャッジ時間 14,633 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
80,000 KB
testcase_01 AC 123 ms
80,000 KB
testcase_02 AC 123 ms
79,872 KB
testcase_03 AC 245 ms
82,816 KB
testcase_04 AC 241 ms
83,072 KB
testcase_05 AC 231 ms
83,200 KB
testcase_06 AC 243 ms
82,944 KB
testcase_07 AC 244 ms
83,116 KB
testcase_08 AC 232 ms
83,200 KB
testcase_09 AC 240 ms
82,944 KB
testcase_10 AC 234 ms
82,816 KB
testcase_11 AC 227 ms
82,944 KB
testcase_12 AC 246 ms
82,944 KB
testcase_13 AC 122 ms
80,256 KB
testcase_14 AC 123 ms
80,128 KB
testcase_15 AC 123 ms
79,616 KB
testcase_16 AC 123 ms
80,000 KB
testcase_17 AC 124 ms
80,000 KB
testcase_18 AC 122 ms
80,124 KB
testcase_19 AC 123 ms
79,616 KB
testcase_20 AC 124 ms
80,000 KB
testcase_21 AC 143 ms
81,664 KB
testcase_22 AC 127 ms
80,000 KB
testcase_23 AC 123 ms
79,996 KB
testcase_24 AC 164 ms
81,920 KB
testcase_25 AC 152 ms
81,920 KB
testcase_26 AC 123 ms
80,000 KB
testcase_27 AC 126 ms
79,872 KB
testcase_28 AC 123 ms
80,128 KB
testcase_29 AC 124 ms
80,000 KB
testcase_30 AC 121 ms
80,128 KB
testcase_31 AC 121 ms
80,048 KB
testcase_32 AC 126 ms
79,744 KB
testcase_33 AC 208 ms
82,944 KB
testcase_34 AC 230 ms
82,816 KB
testcase_35 AC 211 ms
83,048 KB
testcase_36 AC 231 ms
82,992 KB
testcase_37 AC 222 ms
82,816 KB
testcase_38 AC 230 ms
82,944 KB
testcase_39 AC 224 ms
82,944 KB
testcase_40 AC 235 ms
82,944 KB
testcase_41 AC 239 ms
83,072 KB
testcase_42 AC 232 ms
82,996 KB
testcase_43 AC 244 ms
82,944 KB
testcase_44 AC 236 ms
82,816 KB
testcase_45 AC 235 ms
82,944 KB
testcase_46 AC 248 ms
82,688 KB
testcase_47 AC 240 ms
83,072 KB
testcase_48 AC 242 ms
82,944 KB
testcase_49 AC 233 ms
82,980 KB
testcase_50 AC 236 ms
83,200 KB
testcase_51 AC 238 ms
82,944 KB
testcase_52 AC 238 ms
83,200 KB
testcase_53 AC 121 ms
80,256 KB
testcase_54 AC 123 ms
80,184 KB
testcase_55 AC 122 ms
80,128 KB
testcase_56 AC 137 ms
81,444 KB
testcase_57 AC 123 ms
80,128 KB
testcase_58 AC 125 ms
80,128 KB
testcase_59 AC 123 ms
80,188 KB
testcase_60 AC 126 ms
79,872 KB
testcase_61 AC 124 ms
80,128 KB
testcase_62 AC 123 ms
80,256 KB
testcase_63 AC 123 ms
80,000 KB
testcase_64 AC 123 ms
79,616 KB
testcase_65 AC 121 ms
80,000 KB
testcase_66 AC 123 ms
79,616 KB
testcase_67 AC 125 ms
80,064 KB
testcase_68 AC 122 ms
80,056 KB
testcase_69 AC 121 ms
79,872 KB
testcase_70 AC 121 ms
80,256 KB
testcase_71 AC 121 ms
79,976 KB
testcase_72 AC 122 ms
80,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import decimal



N, M = map(lambda x: decimal.Decimal(x), input().split())
W = list(map(lambda x:decimal.Decimal(x), input().split()))
if M == 0:
    print(*[0 for _ in range(int(N))])
    exit()
total_weight = sum(W)
ball_weight = decimal.Decimal(total_weight / M)

result = []
eps = decimal.Decimal(0.0001)
for w in W:
    cnt = w / ball_weight + eps
    result.append(int(cnt))

print(*result)
0