結果

問題 No.5 数字のブロック
ユーザー misa2001spacemisa2001space
提出日時 2016-09-25 12:29:18
言語 Python2
(2.7.18)
結果
AC  
実行時間 22 ms / 5,000 ms
コード長 192 bytes
コンパイル時間 52 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-11-18 09:38:04
合計ジャッジ時間 1,633 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*- 

L = input()
N = input()
W = map(int, raw_input().split())
C = 0

W.sort()

for i in xrange(len(W)):
    if L - W[i] >= 0:
        L = L - W[i]
        C += 1

print C
0