結果

問題 No.156 キャンディー・ボックス
ユーザー togatogatogatoga
提出日時 2015-08-22 13:57:03
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 247 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 13,756 KB
最終ジャッジ日時 2024-07-18 12:45:16
合計ジャッジ時間 10,614 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
13,756 KB
testcase_01 AC 10 ms
6,940 KB
testcase_02 AC 10 ms
6,940 KB
testcase_03 AC 10 ms
6,944 KB
testcase_04 AC 10 ms
6,940 KB
testcase_05 AC 213 ms
6,940 KB
testcase_06 AC 527 ms
6,944 KB
testcase_07 AC 391 ms
6,944 KB
testcase_08 AC 286 ms
6,940 KB
testcase_09 AC 177 ms
6,940 KB
testcase_10 AC 361 ms
6,944 KB
testcase_11 AC 177 ms
6,940 KB
testcase_12 AC 505 ms
6,940 KB
testcase_13 AC 319 ms
6,940 KB
testcase_14 AC 179 ms
6,944 KB
testcase_15 AC 373 ms
6,944 KB
testcase_16 AC 185 ms
6,944 KB
testcase_17 AC 315 ms
6,940 KB
testcase_18 AC 161 ms
6,940 KB
testcase_19 AC 183 ms
6,944 KB
testcase_20 AC 14 ms
6,940 KB
testcase_21 AC 53 ms
6,944 KB
testcase_22 AC 145 ms
6,940 KB
testcase_23 AC 71 ms
6,944 KB
testcase_24 AC 10 ms
6,940 KB
testcase_25 AC 10 ms
6,944 KB
testcase_26 AC 10 ms
6,940 KB
testcase_27 AC 10 ms
6,944 KB
testcase_28 AC 9 ms
6,944 KB
testcase_29 AC 9 ms
6,940 KB
testcase_30 AC 959 ms
6,944 KB
testcase_31 AC 623 ms
6,944 KB
testcase_32 TLE -
testcase_33 -- -
権限があれば一括ダウンロードができます

ソースコード

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