結果

問題 No.5 数字のブロック
ユーザー ナカヒデ@競プロエンジニアナカヒデ@競プロエンジニア
提出日時 2023-07-16 10:13:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 5,000 ms
コード長 174 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 61,336 KB
最終ジャッジ日時 2024-09-17 12:39:48
合計ジャッジ時間 2,374 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
52,212 KB
testcase_01 AC 31 ms
53,004 KB
testcase_02 AC 30 ms
53,172 KB
testcase_03 AC 34 ms
60,340 KB
testcase_04 AC 34 ms
58,884 KB
testcase_05 AC 35 ms
60,568 KB
testcase_06 AC 35 ms
59,752 KB
testcase_07 AC 39 ms
58,552 KB
testcase_08 AC 38 ms
59,756 KB
testcase_09 AC 42 ms
57,912 KB
testcase_10 AC 44 ms
60,536 KB
testcase_11 AC 38 ms
58,408 KB
testcase_12 AC 37 ms
59,916 KB
testcase_13 AC 34 ms
60,264 KB
testcase_14 AC 30 ms
53,012 KB
testcase_15 AC 31 ms
52,092 KB
testcase_16 AC 36 ms
61,336 KB
testcase_17 AC 35 ms
59,884 KB
testcase_18 AC 34 ms
60,124 KB
testcase_19 AC 35 ms
60,216 KB
testcase_20 AC 30 ms
52,468 KB
testcase_21 AC 31 ms
52,580 KB
testcase_22 AC 33 ms
52,712 KB
testcase_23 AC 34 ms
52,004 KB
testcase_24 AC 31 ms
51,812 KB
testcase_25 AC 30 ms
52,848 KB
testcase_26 AC 32 ms
53,628 KB
testcase_27 AC 33 ms
53,108 KB
testcase_28 AC 34 ms
51,820 KB
testcase_29 AC 37 ms
59,032 KB
testcase_30 AC 36 ms
59,320 KB
testcase_31 AC 32 ms
52,760 KB
testcase_32 AC 30 ms
53,192 KB
testcase_33 AC 31 ms
52,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l = int(input())
n = int(input())
w = list(map(int, input().split()))
w.sort()

sum = 0
ans = 0
for i in range(n):
	if sum + w[i] > l: break
	sum += w[i]
	ans += 1
print(ans)
0