結果

問題 No.156 キャンディー・ボックス
ユーザー minezumuminezumu
提出日時 2018-07-23 08:46:16
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 308 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-12-26 05:33:30
合計ジャッジ時間 13,859 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
15,872 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 29 ms
16,000 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 230 ms
10,496 KB
testcase_06 AC 462 ms
10,496 KB
testcase_07 AC 362 ms
10,496 KB
testcase_08 AC 307 ms
10,624 KB
testcase_09 AC 247 ms
10,624 KB
testcase_10 AC 364 ms
10,624 KB
testcase_11 AC 214 ms
10,496 KB
testcase_12 AC 435 ms
10,624 KB
testcase_13 AC 304 ms
10,496 KB
testcase_14 AC 214 ms
10,624 KB
testcase_15 AC 353 ms
10,752 KB
testcase_16 AC 241 ms
10,496 KB
testcase_17 AC 301 ms
10,496 KB
testcase_18 AC 118 ms
10,624 KB
testcase_19 AC 135 ms
10,496 KB
testcase_20 AC 38 ms
10,496 KB
testcase_21 AC 62 ms
10,496 KB
testcase_22 AC 125 ms
10,496 KB
testcase_23 AC 77 ms
10,624 KB
testcase_24 AC 29 ms
10,496 KB
testcase_25 AC 30 ms
10,368 KB
testcase_26 AC 30 ms
10,624 KB
testcase_27 AC 28 ms
10,624 KB
testcase_28 AC 32 ms
10,624 KB
testcase_29 AC 31 ms
10,368 KB
testcase_30 AC 1,189 ms
10,496 KB
testcase_31 AC 380 ms
10,624 KB
testcase_32 TLE -
testcase_33 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
C = list(map(int,input().split()))
C = sorted(C)
counter = 0
answer = 0
while counter < M+1 :
    if len(C) == 0 :
        break
    elif C[0] != 0 :
        C[0] -= 1
        counter += 1
        C = sorted(C)
    else :
        answer += 1
        C.pop(C[0])
print(answer)

0