結果

問題 No.5 数字のブロック
ユーザー ns6251
提出日時 2019-12-02 10:59:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 211 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 59,136 KB
最終ジャッジ日時 2024-11-23 23:23:38
合計ジャッジ時間 2,782 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 24 WA * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

L = int(input())
N = int(input())
W = [int(_) for _ in input().split()]
W.sort()
s: int = 0
cnt :int = 0
for n in W:
    if L >= s + n:
        s += n
        cnt += 1
    else:
        print(cnt)
        break
0