結果

問題 No.5 数字のブロック
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-11-28 07:27:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 5,000 ms
コード長 423 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 81,996 KB
実行使用メモリ 64,640 KB
最終ジャッジ日時 2024-10-05 03:07:34
合計ジャッジ時間 2,761 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,520 KB
testcase_01 AC 42 ms
55,560 KB
testcase_02 AC 45 ms
56,688 KB
testcase_03 AC 45 ms
64,588 KB
testcase_04 AC 43 ms
63,180 KB
testcase_05 AC 45 ms
64,160 KB
testcase_06 AC 45 ms
64,376 KB
testcase_07 AC 48 ms
63,392 KB
testcase_08 AC 45 ms
62,916 KB
testcase_09 AC 42 ms
62,004 KB
testcase_10 AC 46 ms
63,884 KB
testcase_11 AC 44 ms
63,028 KB
testcase_12 AC 44 ms
62,900 KB
testcase_13 AC 44 ms
63,372 KB
testcase_14 AC 40 ms
56,952 KB
testcase_15 AC 41 ms
56,948 KB
testcase_16 AC 45 ms
64,240 KB
testcase_17 AC 47 ms
64,640 KB
testcase_18 AC 47 ms
64,380 KB
testcase_19 AC 46 ms
64,284 KB
testcase_20 AC 40 ms
55,924 KB
testcase_21 AC 40 ms
55,892 KB
testcase_22 AC 42 ms
57,208 KB
testcase_23 AC 40 ms
56,280 KB
testcase_24 AC 42 ms
56,116 KB
testcase_25 AC 42 ms
56,184 KB
testcase_26 AC 41 ms
57,012 KB
testcase_27 AC 40 ms
56,172 KB
testcase_28 AC 40 ms
57,016 KB
testcase_29 AC 45 ms
63,588 KB
testcase_30 AC 45 ms
62,744 KB
testcase_31 AC 40 ms
56,052 KB
testcase_32 AC 40 ms
55,576 KB
testcase_33 AC 40 ms
55,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
from collections import *
from functools import *
from itertools import *
from heapq import *
import sys,math
input = sys.stdin.readline

L = int(input())
N = int(input())
W = list(map(int,input().split()))
W.sort()
res = 0
cnt = 0
W = deque(W)
while W:
    w = W.popleft()
    if res+w<=L:
        res += w
        cnt += 1
    else:
        break
print(cnt)
0