結果

問題 No.2424 Josouzai
ユーザー QroQro
提出日時 2023-08-18 21:06:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 167 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 108,160 KB
最終ジャッジ日時 2024-11-28 04:47:15
合計ジャッジ時間 4,284 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
A=list(map(int,input().split()))
A.sort()
count=0
for i in range(N):
    if K-A[i] >= 0:
        K-=A[i]
        count+=1

print(count,K)
0