結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,152 KB
testcase_01 AC 38 ms
52,396 KB
testcase_02 AC 39 ms
52,148 KB
testcase_03 AC 38 ms
52,616 KB
testcase_04 RE -
testcase_05 AC 38 ms
53,224 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 37 ms
52,556 KB
testcase_19 AC 37 ms
52,892 KB
testcase_20 AC 36 ms
52,492 KB
testcase_21 AC 38 ms
52,680 KB
testcase_22 AC 36 ms
52,296 KB
testcase_23 AC 36 ms
52,816 KB
testcase_24 AC 37 ms
52,372 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 34 ms
52,232 KB
testcase_29 AC 36 ms
52,360 KB
testcase_30 AC 36 ms
52,200 KB
testcase_31 AC 37 ms
53,868 KB
testcase_32 AC 38 ms
53,196 KB
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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