結果

問題 No.156 キャンディー・ボックス
ユーザー 310icecrystal310icecrystal
提出日時 2023-06-23 07:40:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 130 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 53,936 KB
最終ジャッジ日時 2024-06-30 13:02:14
合計ジャッジ時間 2,734 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 38 ms
52,564 KB
testcase_02 WA -
testcase_03 AC 37 ms
52,552 KB
testcase_04 AC 38 ms
52,480 KB
testcase_05 WA -
testcase_06 AC 36 ms
52,836 KB
testcase_07 AC 37 ms
53,200 KB
testcase_08 AC 37 ms
53,284 KB
testcase_09 AC 37 ms
53,040 KB
testcase_10 AC 37 ms
52,376 KB
testcase_11 AC 37 ms
52,492 KB
testcase_12 AC 38 ms
52,816 KB
testcase_13 AC 37 ms
52,504 KB
testcase_14 AC 38 ms
52,400 KB
testcase_15 AC 37 ms
52,892 KB
testcase_16 AC 37 ms
51,828 KB
testcase_17 AC 37 ms
53,360 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 37 ms
51,940 KB
testcase_26 AC 37 ms
52,656 KB
testcase_27 AC 38 ms
53,416 KB
testcase_28 AC 37 ms
51,924 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 37 ms
53,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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