結果

問題 No.156 キャンディー・ボックス
ユーザー tarotaro789tarotaro789
提出日時 2021-02-13 01:03:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 321 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-07-20 02:35:39
合計ジャッジ時間 8,889 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
16,000 KB
testcase_01 WA -
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 WA -
testcase_06 AC 244 ms
10,496 KB
testcase_07 AC 209 ms
10,624 KB
testcase_08 AC 214 ms
10,752 KB
testcase_09 AC 142 ms
10,752 KB
testcase_10 AC 217 ms
10,496 KB
testcase_11 AC 177 ms
10,624 KB
testcase_12 AC 237 ms
10,624 KB
testcase_13 AC 176 ms
10,624 KB
testcase_14 AC 171 ms
10,624 KB
testcase_15 AC 216 ms
10,624 KB
testcase_16 AC 149 ms
10,496 KB
testcase_17 AC 174 ms
10,752 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 38 ms
10,624 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 34 ms
10,496 KB
testcase_25 AC 34 ms
10,624 KB
testcase_26 AC 31 ms
10,624 KB
testcase_27 AC 33 ms
10,624 KB
testcase_28 WA -
testcase_29 AC 31 ms
10,624 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 TLE -
testcase_33 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

box,toru=map(int,input().split())
ls=[int(i) for i in input().split()]
ls.sort()

flg=0
while True:
     for i in range(len(ls)):
          if ls[i]!=0:
               ls[i]-=1
               toru-=1
          if toru==0:
               flg=1
               break
     if flg==1:
          break
     
print(ls.count(0))
0