結果

問題 No.5 数字のブロック
ユーザー rarpipipirarpipipi
提出日時 2023-12-31 03:55:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 5,000 ms
コード長 155 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 62,392 KB
最終ジャッジ日時 2024-09-27 17:00:57
合計ジャッジ時間 2,854 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,068 KB
testcase_01 AC 38 ms
53,172 KB
testcase_02 AC 38 ms
52,088 KB
testcase_03 AC 44 ms
60,424 KB
testcase_04 AC 45 ms
60,084 KB
testcase_05 AC 46 ms
61,168 KB
testcase_06 AC 46 ms
60,144 KB
testcase_07 AC 46 ms
60,032 KB
testcase_08 AC 45 ms
60,576 KB
testcase_09 AC 44 ms
60,852 KB
testcase_10 AC 46 ms
61,860 KB
testcase_11 AC 46 ms
59,680 KB
testcase_12 AC 45 ms
61,116 KB
testcase_13 AC 46 ms
61,116 KB
testcase_14 AC 40 ms
52,072 KB
testcase_15 AC 39 ms
51,876 KB
testcase_16 AC 45 ms
61,212 KB
testcase_17 AC 46 ms
60,740 KB
testcase_18 AC 46 ms
62,392 KB
testcase_19 AC 45 ms
60,924 KB
testcase_20 AC 39 ms
53,568 KB
testcase_21 AC 39 ms
52,824 KB
testcase_22 AC 42 ms
54,000 KB
testcase_23 AC 38 ms
52,560 KB
testcase_24 AC 38 ms
52,420 KB
testcase_25 AC 38 ms
52,824 KB
testcase_26 AC 38 ms
53,024 KB
testcase_27 AC 37 ms
52,088 KB
testcase_28 AC 38 ms
52,824 KB
testcase_29 AC 44 ms
60,516 KB
testcase_30 AC 43 ms
60,392 KB
testcase_31 AC 38 ms
51,692 KB
testcase_32 AC 38 ms
51,876 KB
testcase_33 AC 38 ms
52,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l=int(input())
n=int(input())
w=list(map(int,input().split()))
w.sort()
ans=0
for i in range(n):
    if l>=w[i]:
        l-=w[i]
        ans+=1
print(ans)
0