結果

問題 No.5 数字のブロック
ユーザー kohei2019kohei2019
提出日時 2021-02-02 21:19:48
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 32 ms / 5,000 ms
コード長 228 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-06-29 23:54:26
合計ジャッジ時間 1,932 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

L = int(input())
N = int(input())
lsW = list(map(int,input().split()))
lsW.sort()
cnt = 0
l = 0
for i in range(N):
    if l+lsW[i] <= L:
        cnt += 1
        l += lsW[i]
    else:
        print(cnt)
        exit()
print(cnt)
0