結果

問題 No.5 数字のブロック
ユーザー かい
提出日時 2023-07-05 14:03:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 5,000 ms
コード長 194 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 61,184 KB
最終ジャッジ日時 2024-07-19 08:12:12
合計ジャッジ時間 2,629 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

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

from bisect import bisect
from itertools import accumulate

W = list(accumulate(W))
# print(W)
print(bisect(W, L))
0