結果

問題 No.5 数字のブロック
ユーザー 310icecrystal310icecrystal
提出日時 2023-07-06 07:38:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 5,000 ms
コード長 179 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 59,776 KB
最終ジャッジ日時 2024-07-20 02:47:02
合計ジャッジ時間 2,882 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

L = int(input())
N = int(input())
W = list(map(int,input().split()))
W.sort()

now = 0
S = 0
while now < N:
	if S + W[now] <= L:
		S += W[now]
		now += 1
	else:
		break
print(now)
0