結果
| 問題 |
No.156 キャンディー・ボックス
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-08-07 19:09:46 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 36 ms / 2,000 ms |
| コード長 | 200 bytes |
| コンパイル時間 | 186 ms |
| コンパイル使用メモリ | 81,920 KB |
| 実行使用メモリ | 52,224 KB |
| 最終ジャッジ日時 | 2024-09-18 19:37:15 |
| 合計ジャッジ時間 | 2,256 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 30 |
ソースコード
N,M = map(int,input().split())
lsC = list(map(int,input().split()))
lsC.sort(reverse=True)
while lsC and M > 0:
if lsC[-1] <= M:
M -= lsC.pop()
else:
break
print(N-len(lsC))