結果

問題 No.156 キャンディー・ボックス
ユーザー shobonvipshobonvip
提出日時 2022-11-24 04:11:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 748 ms / 2,000 ms
コード長 248 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 75,632 KB
最終ジャッジ日時 2024-09-25 06:03:56
合計ジャッジ時間 4,997 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
63,084 KB
testcase_01 AC 37 ms
52,072 KB
testcase_02 AC 38 ms
52,632 KB
testcase_03 AC 38 ms
52,672 KB
testcase_04 AC 37 ms
53,040 KB
testcase_05 AC 62 ms
72,764 KB
testcase_06 AC 84 ms
75,440 KB
testcase_07 AC 96 ms
75,100 KB
testcase_08 AC 72 ms
75,336 KB
testcase_09 AC 61 ms
72,424 KB
testcase_10 AC 75 ms
75,204 KB
testcase_11 AC 60 ms
71,276 KB
testcase_12 AC 105 ms
75,328 KB
testcase_13 AC 70 ms
75,140 KB
testcase_14 AC 60 ms
73,068 KB
testcase_15 AC 93 ms
75,528 KB
testcase_16 AC 60 ms
73,664 KB
testcase_17 AC 76 ms
75,372 KB
testcase_18 AC 57 ms
65,232 KB
testcase_19 AC 54 ms
67,028 KB
testcase_20 AC 42 ms
59,252 KB
testcase_21 AC 48 ms
61,452 KB
testcase_22 AC 56 ms
65,336 KB
testcase_23 AC 49 ms
63,120 KB
testcase_24 AC 37 ms
52,740 KB
testcase_25 AC 36 ms
53,184 KB
testcase_26 AC 37 ms
52,748 KB
testcase_27 AC 37 ms
53,540 KB
testcase_28 AC 37 ms
52,364 KB
testcase_29 AC 36 ms
52,824 KB
testcase_30 AC 138 ms
75,316 KB
testcase_31 AC 77 ms
75,632 KB
testcase_32 AC 748 ms
75,312 KB
testcase_33 AC 745 ms
75,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
c = list(map(int,input().split()))
for i in range(m):
	tmp = 10**9
	ind = 0
	for j in range(n):
		if 0 < c[j] < tmp:
			tmp = c[j]
			ind = j
	c[ind] -= 1

ans = 0
for i in range(n):
	if 0 == c[i]: ans += 1
print(ans)
0