結果

問題 No.156 キャンディー・ボックス
ユーザー 310icecrystal310icecrystal
提出日時 2023-06-23 07:41:41
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 137 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 67,092 KB
最終ジャッジ日時 2024-06-30 13:03:51
合計ジャッジ時間 2,979 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,492 KB
testcase_01 AC 37 ms
53,340 KB
testcase_02 AC 36 ms
52,204 KB
testcase_03 AC 36 ms
53,252 KB
testcase_04 RE -
testcase_05 AC 35 ms
52,360 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 35 ms
52,928 KB
testcase_19 AC 37 ms
52,312 KB
testcase_20 AC 37 ms
52,620 KB
testcase_21 AC 37 ms
52,544 KB
testcase_22 AC 37 ms
52,408 KB
testcase_23 AC 37 ms
53,000 KB
testcase_24 AC 37 ms
52,212 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 37 ms
52,336 KB
testcase_29 AC 35 ms
53,372 KB
testcase_30 AC 37 ms
52,980 KB
testcase_31 AC 37 ms
52,472 KB
testcase_32 AC 37 ms
52,288 KB
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

now = 0
while M-C[now]>= 0:
	M -= C[now]
	now += 1
print(now)
0