結果

問題 No.5 数字のブロック
ユーザー zurukumozurukumo
提出日時 2019-07-13 02:27:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 5,000 ms
コード長 159 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 60,728 KB
最終ジャッジ日時 2024-11-19 09:39:01
合計ジャッジ時間 2,896 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,404 KB
testcase_01 AC 35 ms
52,852 KB
testcase_02 AC 35 ms
52,820 KB
testcase_03 AC 45 ms
60,140 KB
testcase_04 AC 43 ms
58,772 KB
testcase_05 AC 40 ms
60,728 KB
testcase_06 AC 39 ms
59,076 KB
testcase_07 AC 38 ms
58,688 KB
testcase_08 AC 39 ms
59,380 KB
testcase_09 AC 38 ms
58,368 KB
testcase_10 AC 38 ms
59,416 KB
testcase_11 AC 38 ms
59,472 KB
testcase_12 AC 39 ms
59,488 KB
testcase_13 AC 38 ms
59,136 KB
testcase_14 AC 34 ms
53,068 KB
testcase_15 AC 35 ms
53,576 KB
testcase_16 AC 40 ms
59,332 KB
testcase_17 AC 42 ms
59,712 KB
testcase_18 AC 40 ms
60,472 KB
testcase_19 AC 39 ms
60,572 KB
testcase_20 AC 34 ms
52,244 KB
testcase_21 AC 34 ms
52,348 KB
testcase_22 AC 33 ms
53,604 KB
testcase_23 AC 35 ms
52,276 KB
testcase_24 AC 36 ms
52,924 KB
testcase_25 AC 35 ms
52,684 KB
testcase_26 AC 33 ms
53,288 KB
testcase_27 AC 35 ms
53,028 KB
testcase_28 AC 35 ms
53,132 KB
testcase_29 AC 38 ms
59,396 KB
testcase_30 AC 37 ms
58,348 KB
testcase_31 AC 34 ms
52,480 KB
testcase_32 AC 34 ms
52,000 KB
testcase_33 AC 33 ms
53,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L = int(input())
N = int(input())
W = [int(i) for i in input().split()]

W.sort()

i = 0
while i < N and L - W[i] >= 0 :
    L -= W[i]
    i += 1
    
print(i)
0