結果

問題 No.156 キャンディー・ボックス
ユーザー kaminomisosirukaminomisosiru
提出日時 2018-02-05 22:32:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 297 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 16,256 KB
最終ジャッジ日時 2024-07-08 07:24:51
合計ジャッジ時間 10,284 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
16,128 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 25 ms
10,880 KB
testcase_04 AC 25 ms
10,624 KB
testcase_05 AC 202 ms
10,752 KB
testcase_06 AC 458 ms
10,752 KB
testcase_07 AC 332 ms
10,624 KB
testcase_08 AC 274 ms
10,880 KB
testcase_09 AC 204 ms
10,624 KB
testcase_10 AC 320 ms
10,624 KB
testcase_11 AC 187 ms
10,624 KB
testcase_12 AC 410 ms
10,752 KB
testcase_13 AC 275 ms
10,752 KB
testcase_14 AC 192 ms
10,624 KB
testcase_15 AC 328 ms
10,752 KB
testcase_16 AC 208 ms
10,624 KB
testcase_17 AC 277 ms
10,752 KB
testcase_18 AC 121 ms
10,752 KB
testcase_19 AC 147 ms
10,752 KB
testcase_20 AC 34 ms
10,752 KB
testcase_21 AC 54 ms
10,880 KB
testcase_22 AC 112 ms
10,880 KB
testcase_23 AC 65 ms
10,752 KB
testcase_24 AC 25 ms
10,752 KB
testcase_25 AC 24 ms
10,752 KB
testcase_26 AC 25 ms
10,752 KB
testcase_27 AC 25 ms
10,752 KB
testcase_28 AC 25 ms
10,752 KB
testcase_29 AC 26 ms
10,752 KB
testcase_30 AC 1,086 ms
10,880 KB
testcase_31 AC 429 ms
10,752 KB
testcase_32 TLE -
testcase_33 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8

from collections import Counter
import math

n,m = map(int, input().split(" "))
candys = list(map(int,input().split(" ")))

while m != 0:
    min_ = candys.pop(candys.index(min(candys)))
    min_ -= 1
    if min_ != 0:
        candys.append(min_)
    m -= 1
print(n - len(candys))
0