結果

問題 No.5 数字のブロック
ユーザー hirayuu_ychirayuu_yc
提出日時 2023-08-22 15:34:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 5,000 ms
コード長 142 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 86,872 KB
実行使用メモリ 75,920 KB
最終ジャッジ日時 2023-08-22 15:34:42
合計ジャッジ時間 4,208 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,316 KB
testcase_01 AC 75 ms
71,044 KB
testcase_02 AC 71 ms
71,392 KB
testcase_03 AC 73 ms
75,712 KB
testcase_04 AC 74 ms
75,764 KB
testcase_05 AC 74 ms
75,652 KB
testcase_06 AC 72 ms
75,748 KB
testcase_07 AC 80 ms
75,920 KB
testcase_08 AC 72 ms
75,688 KB
testcase_09 AC 72 ms
75,604 KB
testcase_10 AC 73 ms
75,904 KB
testcase_11 AC 73 ms
75,696 KB
testcase_12 AC 74 ms
75,684 KB
testcase_13 AC 74 ms
75,764 KB
testcase_14 AC 77 ms
71,472 KB
testcase_15 AC 70 ms
71,344 KB
testcase_16 AC 74 ms
75,668 KB
testcase_17 AC 75 ms
75,768 KB
testcase_18 AC 74 ms
75,684 KB
testcase_19 AC 74 ms
75,648 KB
testcase_20 AC 69 ms
71,332 KB
testcase_21 AC 70 ms
71,092 KB
testcase_22 AC 71 ms
71,072 KB
testcase_23 AC 69 ms
71,324 KB
testcase_24 AC 78 ms
71,260 KB
testcase_25 AC 69 ms
71,316 KB
testcase_26 AC 70 ms
71,240 KB
testcase_27 AC 69 ms
71,272 KB
testcase_28 AC 70 ms
71,396 KB
testcase_29 AC 73 ms
75,568 KB
testcase_30 AC 73 ms
75,780 KB
testcase_31 AC 69 ms
71,072 KB
testcase_32 AC 68 ms
71,284 KB
testcase_33 AC 70 ms
71,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L=int(input())
N=int(input())
W=sorted(list(map(int,input().split())))
ans=0
cnt=0
for i in W:
	if cnt+i>L:
		break
	cnt+=i
	ans+=1
print(ans)
0