結果

問題 No.156 キャンディー・ボックス
ユーザー c-yanc-yan
提出日時 2020-07-15 21:17:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 268 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,120 KB
最終ジャッジ日時 2024-11-22 11:51:23
合計ジャッジ時間 12,129 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
16,000 KB
testcase_01 AC 31 ms
21,120 KB
testcase_02 AC 30 ms
17,700 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 172 ms
10,624 KB
testcase_06 AC 338 ms
10,752 KB
testcase_07 AC 280 ms
10,624 KB
testcase_08 AC 218 ms
10,624 KB
testcase_09 AC 171 ms
10,624 KB
testcase_10 AC 261 ms
10,624 KB
testcase_11 AC 155 ms
10,752 KB
testcase_12 AC 333 ms
10,624 KB
testcase_13 AC 222 ms
10,624 KB
testcase_14 AC 155 ms
10,624 KB
testcase_15 AC 261 ms
10,624 KB
testcase_16 AC 176 ms
10,752 KB
testcase_17 AC 220 ms
10,624 KB
testcase_18 AC 100 ms
10,624 KB
testcase_19 AC 110 ms
10,752 KB
testcase_20 AC 36 ms
10,752 KB
testcase_21 AC 52 ms
10,752 KB
testcase_22 AC 95 ms
10,880 KB
testcase_23 AC 61 ms
10,752 KB
testcase_24 AC 31 ms
10,752 KB
testcase_25 AC 31 ms
10,624 KB
testcase_26 AC 30 ms
10,752 KB
testcase_27 AC 30 ms
10,752 KB
testcase_28 AC 30 ms
10,752 KB
testcase_29 AC 31 ms
10,752 KB
testcase_30 AC 804 ms
10,624 KB
testcase_31 AC 303 ms
10,752 KB
testcase_32 TLE -
testcase_33 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappop, heappush

N, M, *C = map(int, open(0).read().split())

heapify(C)
for _ in range(M):
    if len(C) == 0:
        print(N)
        break
    t = heappop(C)
    t -= 1
    if t != 0:
        heappush(C, t)
else:
    print(N - len(C))
0