結果

問題 No.5 数字のブロック
ユーザー hirayuu_yc
提出日時 2023-08-22 15:34:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 142 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 61,704 KB
最終ジャッジ日時 2024-12-17 15:08:12
合計ジャッジ時間 2,717 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

L=int(input())
N=int(input())
W=sorted(list(map(int,input().split())))
ans=0
cnt=0
for i in W:
	if cnt+i>L:
		break
	cnt+=i
	ans+=1
print(ans)
0