結果

問題 No.5 数字のブロック
ユーザー miya145592miya145592
提出日時 2023-05-04 01:27:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 5,000 ms
コード長 177 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 59,904 KB
最終ジャッジ日時 2024-11-21 23:31:14
合計ジャッジ時間 2,789 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

L = int(input())
N = int(input())
W = list(map(int, input().split()))
W.sort()
S = 0
C = 0
for w in W:
    if S+w<=L:
        S+=w
        C+=1
    else:
        break
print(C)
0