結果

問題 No.5 数字のブロック
ユーザー mitsushinomitsushino
提出日時 2016-12-04 14:58:38
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 32 ms / 5,000 ms
コード長 249 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-11-18 10:47:06
合計ジャッジ時間 1,966 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

wide_box_len = int(input())
box_numbers = int(input())
boxes = list(map(int, input().split()))
boxes.sort()
sum_box = 0

for box in boxes:
    wide_box_len -= box
    if wide_box_len >= 0:
        sum_box += 1
    else:
        break
print(sum_box)
0