結果

問題 No.1738 What's in the box?
ユーザー shinichishinichi
提出日時 2021-11-13 19:50:13
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 337 bytes
コンパイル時間 417 ms
コンパイル使用メモリ 82,832 KB
実行使用メモリ 83,316 KB
最終ジャッジ日時 2024-11-27 20:20:39
合計ジャッジ時間 12,847 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
80,028 KB
testcase_01 AC 100 ms
80,068 KB
testcase_02 AC 106 ms
80,056 KB
testcase_03 AC 203 ms
83,032 KB
testcase_04 AC 204 ms
83,172 KB
testcase_05 AC 190 ms
83,048 KB
testcase_06 AC 222 ms
82,976 KB
testcase_07 AC 224 ms
83,172 KB
testcase_08 AC 216 ms
83,024 KB
testcase_09 AC 211 ms
82,984 KB
testcase_10 AC 195 ms
83,136 KB
testcase_11 AC 193 ms
82,992 KB
testcase_12 AC 234 ms
83,100 KB
testcase_13 AC 111 ms
79,780 KB
testcase_14 AC 103 ms
80,116 KB
testcase_15 AC 99 ms
80,168 KB
testcase_16 AC 107 ms
80,004 KB
testcase_17 AC 107 ms
80,064 KB
testcase_18 AC 105 ms
80,044 KB
testcase_19 AC 102 ms
79,648 KB
testcase_20 AC 106 ms
79,996 KB
testcase_21 AC 123 ms
81,972 KB
testcase_22 AC 109 ms
80,064 KB
testcase_23 AC 102 ms
79,652 KB
testcase_24 AC 138 ms
82,284 KB
testcase_25 AC 126 ms
81,872 KB
testcase_26 AC 99 ms
79,996 KB
testcase_27 AC 102 ms
80,004 KB
testcase_28 AC 103 ms
80,004 KB
testcase_29 AC 103 ms
80,012 KB
testcase_30 AC 105 ms
80,036 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 167 ms
82,892 KB
testcase_34 AC 190 ms
83,000 KB
testcase_35 AC 187 ms
82,696 KB
testcase_36 AC 214 ms
83,132 KB
testcase_37 AC 187 ms
82,860 KB
testcase_38 AC 199 ms
82,924 KB
testcase_39 AC 195 ms
82,964 KB
testcase_40 AC 210 ms
82,976 KB
testcase_41 AC 219 ms
83,048 KB
testcase_42 AC 192 ms
82,976 KB
testcase_43 AC 200 ms
83,192 KB
testcase_44 AC 198 ms
83,180 KB
testcase_45 AC 206 ms
83,148 KB
testcase_46 AC 208 ms
83,060 KB
testcase_47 AC 194 ms
83,316 KB
testcase_48 AC 213 ms
82,832 KB
testcase_49 AC 207 ms
83,148 KB
testcase_50 AC 199 ms
82,980 KB
testcase_51 AC 202 ms
82,700 KB
testcase_52 AC 202 ms
82,848 KB
testcase_53 AC 103 ms
80,156 KB
testcase_54 AC 109 ms
80,024 KB
testcase_55 AC 110 ms
80,104 KB
testcase_56 AC 118 ms
81,188 KB
testcase_57 AC 111 ms
79,628 KB
testcase_58 AC 108 ms
80,240 KB
testcase_59 AC 109 ms
80,252 KB
testcase_60 AC 108 ms
80,028 KB
testcase_61 AC 104 ms
80,104 KB
testcase_62 AC 103 ms
79,952 KB
testcase_63 AC 113 ms
80,036 KB
testcase_64 AC 103 ms
80,124 KB
testcase_65 AC 101 ms
80,200 KB
testcase_66 AC 100 ms
79,772 KB
testcase_67 AC 99 ms
80,196 KB
testcase_68 AC 103 ms
80,172 KB
testcase_69 AC 103 ms
80,008 KB
testcase_70 AC 102 ms
80,052 KB
testcase_71 AC 103 ms
80,288 KB
testcase_72 AC 101 ms
79,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import decimal



N, M = map(lambda x: decimal.Decimal(x), input().split())
W = list(map(lambda x:decimal.Decimal(x), input().split()))
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