結果

問題 No.5 数字のブロック
ユーザー もぐら 3.0
提出日時 2023-11-13 08:18:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 148 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 60,544 KB
最終ジャッジ日時 2024-09-26 03:14:45
合計ジャッジ時間 2,760 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 27 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

L = int(input())
N = int(input())
W = list(map(int,input().split()))
W.sort()

ans=0
for w in W:
    if L>w:
        L-=w
        ans+=1

print(ans)
0