結果

問題 No.156 キャンディー・ボックス
ユーザー brthyyjpbrthyyjp
提出日時 2021-01-31 16:57:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,306 ms / 2,000 ms
コード長 235 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 76,620 KB
最終ジャッジ日時 2024-06-29 01:45:10
合計ジャッジ時間 6,896 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
69,376 KB
testcase_01 AC 35 ms
52,352 KB
testcase_02 AC 36 ms
52,352 KB
testcase_03 AC 35 ms
52,096 KB
testcase_04 AC 33 ms
52,352 KB
testcase_05 AC 124 ms
76,364 KB
testcase_06 AC 194 ms
76,512 KB
testcase_07 AC 159 ms
76,160 KB
testcase_08 AC 123 ms
76,288 KB
testcase_09 AC 107 ms
76,332 KB
testcase_10 AC 153 ms
76,416 KB
testcase_11 AC 123 ms
76,620 KB
testcase_12 AC 171 ms
76,160 KB
testcase_13 AC 151 ms
76,400 KB
testcase_14 AC 113 ms
76,544 KB
testcase_15 AC 148 ms
76,032 KB
testcase_16 AC 108 ms
76,180 KB
testcase_17 AC 134 ms
76,288 KB
testcase_18 AC 87 ms
75,904 KB
testcase_19 AC 106 ms
76,160 KB
testcase_20 AC 44 ms
59,392 KB
testcase_21 AC 90 ms
76,544 KB
testcase_22 AC 104 ms
76,160 KB
testcase_23 AC 96 ms
75,776 KB
testcase_24 AC 38 ms
52,608 KB
testcase_25 AC 36 ms
52,480 KB
testcase_26 AC 36 ms
52,096 KB
testcase_27 AC 35 ms
52,096 KB
testcase_28 AC 35 ms
52,224 KB
testcase_29 AC 33 ms
52,352 KB
testcase_30 AC 205 ms
76,032 KB
testcase_31 AC 196 ms
75,904 KB
testcase_32 AC 1,306 ms
76,340 KB
testcase_33 AC 1,291 ms
76,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
C = list(map(int, input().split()))
import heapq
heapq.heapify(C)
ans = 0
for i in range(m):
    c = heapq.heappop(C)
    if c == 1:
        ans += 1
    else:
        heapq.heappush(C, c-1)
print(ans)
0