結果

問題 No.5 数字のブロック
ユーザー ddsyg1ddsyg1
提出日時 2019-01-15 15:27:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 168 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 61,140 KB
最終ジャッジ日時 2024-11-18 12:48:20
合計ジャッジ時間 2,315 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,532 KB
testcase_01 AC 38 ms
52,964 KB
testcase_02 AC 37 ms
52,568 KB
testcase_03 AC 38 ms
59,276 KB
testcase_04 AC 38 ms
59,684 KB
testcase_05 AC 38 ms
61,140 KB
testcase_06 AC 42 ms
59,080 KB
testcase_07 AC 38 ms
59,472 KB
testcase_08 AC 40 ms
59,612 KB
testcase_09 AC 39 ms
58,960 KB
testcase_10 AC 38 ms
59,816 KB
testcase_11 AC 39 ms
58,868 KB
testcase_12 AC 41 ms
59,088 KB
testcase_13 AC 38 ms
59,332 KB
testcase_14 AC 37 ms
52,816 KB
testcase_15 AC 35 ms
52,952 KB
testcase_16 AC 40 ms
59,952 KB
testcase_17 AC 39 ms
60,656 KB
testcase_18 AC 40 ms
59,976 KB
testcase_19 AC 41 ms
60,964 KB
testcase_20 AC 34 ms
53,100 KB
testcase_21 AC 35 ms
52,396 KB
testcase_22 AC 35 ms
52,036 KB
testcase_23 AC 34 ms
52,488 KB
testcase_24 AC 35 ms
52,232 KB
testcase_25 AC 34 ms
53,832 KB
testcase_26 AC 35 ms
52,380 KB
testcase_27 AC 35 ms
52,616 KB
testcase_28 AC 35 ms
52,652 KB
testcase_29 AC 38 ms
59,148 KB
testcase_30 AC 39 ms
58,348 KB
testcase_31 AC 35 ms
52,528 KB
testcase_32 AC 34 ms
52,252 KB
testcase_33 AC 35 ms
52,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L = int(input())
M = int(input())
N = list(map(int, input().split()))

cnt = 0
N2 = sorted(N)

for x in range(M):
	L -= N2[x]
	if L < 0:
		break
	cnt = x+1

print(cnt)
0