結果

問題 No.5 数字のブロック
ユーザー lam6er
提出日時 2025-03-20 20:30:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 5,000 ms
コード長 222 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 61,616 KB
最終ジャッジ日時 2025-03-20 20:30:45
合計ジャッジ時間 2,320 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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