結果

問題 No.5 数字のブロック
ユーザー lam6er
提出日時 2025-03-20 18:47:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 191 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,972 KB
実行使用メモリ 61,964 KB
最終ジャッジ日時 2025-03-20 18:47:55
合計ジャッジ時間 2,501 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

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

total = 0
count = 0
for w in W:
    if total + w > L:
        break
    total += w
    count += 1

print(count)
0