結果

問題 No.5 数字のブロック
ユーザー polygon283polygon283
提出日時 2023-09-10 22:25:03
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 36 ms / 5,000 ms
コード長 387 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-06-28 13:23:25
合計ジャッジ時間 2,218 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

L = int(input()) #箱の幅
N = int(input()) #ブロックの個数←使わなかった
W = list(map(int,input().split())) #ブロックの幅

W.sort()
def max_block(L,W):
    count = 0
    current_L = 0

    for brock in W:
        if current_L + brock <= L:
            current_L += brock
            count += 1
        else:
            break
    return count

print(max_block(L,W))
0