結果

問題 No.5 数字のブロック
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-20 13:56:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 5,000 ms
コード長 128 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 60,796 KB
最終ジャッジ日時 2024-10-20 13:57:00
合計ジャッジ時間 3,084 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,448 KB
testcase_01 AC 35 ms
51,824 KB
testcase_02 AC 34 ms
52,484 KB
testcase_03 AC 40 ms
59,912 KB
testcase_04 AC 40 ms
60,476 KB
testcase_05 AC 40 ms
60,796 KB
testcase_06 AC 40 ms
59,576 KB
testcase_07 AC 41 ms
59,680 KB
testcase_08 AC 38 ms
59,296 KB
testcase_09 AC 39 ms
59,300 KB
testcase_10 AC 40 ms
60,008 KB
testcase_11 AC 39 ms
59,572 KB
testcase_12 AC 40 ms
60,648 KB
testcase_13 AC 40 ms
60,156 KB
testcase_14 AC 36 ms
52,264 KB
testcase_15 AC 36 ms
52,752 KB
testcase_16 AC 41 ms
60,556 KB
testcase_17 AC 40 ms
60,080 KB
testcase_18 AC 39 ms
60,288 KB
testcase_19 AC 40 ms
60,160 KB
testcase_20 AC 34 ms
52,944 KB
testcase_21 AC 49 ms
52,776 KB
testcase_22 AC 35 ms
52,120 KB
testcase_23 AC 34 ms
52,076 KB
testcase_24 AC 34 ms
52,636 KB
testcase_25 AC 35 ms
53,984 KB
testcase_26 AC 34 ms
52,952 KB
testcase_27 AC 34 ms
52,736 KB
testcase_28 AC 34 ms
51,832 KB
testcase_29 AC 39 ms
58,480 KB
testcase_30 AC 38 ms
58,340 KB
testcase_31 AC 36 ms
52,092 KB
testcase_32 AC 35 ms
52,064 KB
testcase_33 AC 33 ms
53,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L=int(input())
n=int(input())
w=list(map(int,input().split()))
w.sort()
l=0
i=0
while i<n and l+w[i]<=L:
	l+=w[i]
	i+=1
print(i)
0