結果

問題 No.1738 What's in the box?
ユーザー kohei2019kohei2019
提出日時 2023-06-12 00:01:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 143 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 86,924 KB
実行使用メモリ 79,228 KB
最終ジャッジ日時 2023-09-01 03:37:30
合計ジャッジ時間 9,392 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,416 KB
testcase_01 AC 68 ms
71,536 KB
testcase_02 AC 69 ms
71,572 KB
testcase_03 AC 79 ms
75,380 KB
testcase_04 AC 81 ms
75,228 KB
testcase_05 AC 77 ms
75,448 KB
testcase_06 AC 74 ms
75,348 KB
testcase_07 AC 73 ms
75,388 KB
testcase_08 AC 74 ms
75,632 KB
testcase_09 WA -
testcase_10 AC 74 ms
75,216 KB
testcase_11 WA -
testcase_12 AC 72 ms
75,364 KB
testcase_13 AC 68 ms
71,432 KB
testcase_14 AC 67 ms
71,612 KB
testcase_15 AC 69 ms
71,464 KB
testcase_16 AC 72 ms
71,396 KB
testcase_17 AC 71 ms
71,316 KB
testcase_18 AC 70 ms
71,576 KB
testcase_19 WA -
testcase_20 AC 75 ms
71,164 KB
testcase_21 AC 67 ms
71,432 KB
testcase_22 WA -
testcase_23 AC 67 ms
71,608 KB
testcase_24 AC 69 ms
71,620 KB
testcase_25 AC 69 ms
71,316 KB
testcase_26 WA -
testcase_27 AC 73 ms
71,584 KB
testcase_28 AC 71 ms
71,304 KB
testcase_29 AC 72 ms
71,476 KB
testcase_30 AC 75 ms
71,344 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 76 ms
75,324 KB
testcase_44 WA -
testcase_45 AC 77 ms
75,688 KB
testcase_46 AC 74 ms
75,600 KB
testcase_47 AC 76 ms
75,456 KB
testcase_48 AC 76 ms
75,448 KB
testcase_49 AC 76 ms
75,244 KB
testcase_50 AC 75 ms
75,604 KB
testcase_51 AC 77 ms
75,648 KB
testcase_52 AC 76 ms
75,452 KB
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 WA -
testcase_70 WA -
testcase_71 WA -
testcase_72 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
lsW = list(map(int,input().split()))
sumW = sum(lsW)
ball = sumW/M

print(*[int(lsW[i]/ball) for i in range(N)])
0