結果

問題 No.156 キャンディー・ボックス
ユーザー togatogatogatoga
提出日時 2015-08-22 13:57:30
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,341 ms / 2,000 ms
コード長 247 bytes
コンパイル時間 1,136 ms
コンパイル使用メモリ 76,336 KB
実行使用メモリ 78,912 KB
最終ジャッジ日時 2024-07-18 12:45:28
合計ジャッジ時間 9,161 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
77,596 KB
testcase_01 AC 71 ms
75,648 KB
testcase_02 AC 69 ms
75,540 KB
testcase_03 AC 69 ms
75,580 KB
testcase_04 AC 73 ms
75,392 KB
testcase_05 AC 165 ms
78,912 KB
testcase_06 AC 219 ms
78,464 KB
testcase_07 AC 195 ms
78,592 KB
testcase_08 AC 171 ms
78,336 KB
testcase_09 AC 145 ms
78,524 KB
testcase_10 AC 183 ms
78,636 KB
testcase_11 AC 165 ms
78,648 KB
testcase_12 AC 217 ms
78,588 KB
testcase_13 AC 180 ms
78,592 KB
testcase_14 AC 160 ms
78,480 KB
testcase_15 AC 196 ms
78,760 KB
testcase_16 AC 142 ms
78,364 KB
testcase_17 AC 188 ms
78,892 KB
testcase_18 AC 123 ms
78,240 KB
testcase_19 AC 144 ms
78,464 KB
testcase_20 AC 77 ms
78,000 KB
testcase_21 AC 113 ms
78,780 KB
testcase_22 AC 154 ms
78,720 KB
testcase_23 AC 135 ms
78,360 KB
testcase_24 AC 75 ms
75,264 KB
testcase_25 AC 73 ms
75,168 KB
testcase_26 AC 73 ms
75,820 KB
testcase_27 AC 72 ms
75,672 KB
testcase_28 AC 70 ms
75,532 KB
testcase_29 AC 70 ms
75,180 KB
testcase_30 AC 264 ms
78,208 KB
testcase_31 AC 191 ms
77,948 KB
testcase_32 AC 1,325 ms
78,244 KB
testcase_33 AC 1,341 ms
78,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N,M = map(int,raw_input().split())
C = map(int, raw_input().split())
heapq.heapify(C)
ans = 0
while (M):
    a = heapq.heappop(C)
    a -= 1
    M -=1
    if (a != 0):
        heapq.heappush(C, a)
    else:
        ans += 1
print ans
0