結果

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

ソースコード

diff #

l = int(input())
n = int(input())
w = list(map(int, input().split()))
w.sort()

current_sum = 0
count = 0

for width in w:
    if current_sum + width > l:
        break
    current_sum += width
    count += 1

print(count)
0