結果

問題 No.156 キャンディー・ボックス
ユーザー a_tena_ten
提出日時 2016-03-23 19:21:31
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 234 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 13,348 KB
最終ジャッジ日時 2024-10-01 21:37:24
合計ジャッジ時間 11,117 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
13,340 KB
testcase_01 AC 12 ms
6,820 KB
testcase_02 AC 12 ms
6,816 KB
testcase_03 AC 12 ms
6,820 KB
testcase_04 AC 12 ms
6,816 KB
testcase_05 AC 221 ms
6,820 KB
testcase_06 AC 552 ms
6,816 KB
testcase_07 AC 410 ms
6,820 KB
testcase_08 AC 298 ms
6,820 KB
testcase_09 AC 180 ms
6,820 KB
testcase_10 AC 371 ms
6,816 KB
testcase_11 AC 183 ms
6,820 KB
testcase_12 AC 523 ms
6,820 KB
testcase_13 AC 331 ms
6,820 KB
testcase_14 AC 182 ms
6,820 KB
testcase_15 AC 388 ms
6,816 KB
testcase_16 AC 188 ms
6,816 KB
testcase_17 AC 318 ms
6,820 KB
testcase_18 AC 168 ms
6,816 KB
testcase_19 AC 199 ms
6,816 KB
testcase_20 AC 17 ms
6,820 KB
testcase_21 AC 59 ms
6,824 KB
testcase_22 AC 155 ms
6,820 KB
testcase_23 AC 78 ms
6,820 KB
testcase_24 AC 12 ms
6,820 KB
testcase_25 AC 13 ms
6,816 KB
testcase_26 AC 13 ms
6,816 KB
testcase_27 AC 12 ms
6,816 KB
testcase_28 AC 12 ms
6,820 KB
testcase_29 AC 12 ms
6,820 KB
testcase_30 AC 963 ms
6,816 KB
testcase_31 AC 674 ms
6,816 KB
testcase_32 TLE -
testcase_33 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding:utf-8

from heapq import heapify,heappop,heappush

N,M=map(int,raw_input().split())
C=map(int,raw_input().split())
C1=C

heapify(C)

cnt=0
while M:
	s=heappop(C)
	s-=1
	M-=1
	if s!=0:
		heappush(C,s)
	else:
		cnt+=1

print cnt
0