結果

問題 No.156 キャンディー・ボックス
ユーザー yuki2006yuki2006
提出日時 2015-02-24 00:17:32
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 187 bytes
コンパイル時間 1,099 ms
コンパイル使用メモリ 76,600 KB
実行使用メモリ 75,832 KB
最終ジャッジ日時 2024-07-05 08:40:20
合計ジャッジ時間 4,600 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
75,660 KB
testcase_01 AC 71 ms
75,280 KB
testcase_02 AC 71 ms
75,692 KB
testcase_03 AC 73 ms
75,684 KB
testcase_04 AC 72 ms
75,552 KB
testcase_05 AC 73 ms
75,172 KB
testcase_06 AC 72 ms
75,552 KB
testcase_07 AC 72 ms
75,552 KB
testcase_08 AC 74 ms
75,540 KB
testcase_09 AC 74 ms
75,168 KB
testcase_10 AC 73 ms
75,284 KB
testcase_11 AC 72 ms
75,652 KB
testcase_12 AC 71 ms
75,796 KB
testcase_13 AC 72 ms
75,832 KB
testcase_14 AC 71 ms
75,416 KB
testcase_15 AC 71 ms
75,672 KB
testcase_16 AC 72 ms
75,688 KB
testcase_17 AC 70 ms
75,452 KB
testcase_18 AC 73 ms
75,260 KB
testcase_19 AC 73 ms
75,708 KB
testcase_20 AC 74 ms
75,456 KB
testcase_21 AC 73 ms
75,564 KB
testcase_22 AC 73 ms
75,516 KB
testcase_23 AC 71 ms
75,292 KB
testcase_24 AC 73 ms
75,796 KB
testcase_25 AC 75 ms
75,300 KB
testcase_26 AC 73 ms
75,312 KB
testcase_27 AC 71 ms
75,656 KB
testcase_28 AC 73 ms
75,792 KB
testcase_29 AC 74 ms
75,332 KB
testcase_30 AC 74 ms
75,448 KB
testcase_31 AC 74 ms
75,564 KB
testcase_32 AC 73 ms
75,276 KB
testcase_33 AC 73 ms
75,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, raw_input().split())

C = map(int, raw_input().split())

total = 0
count = 0
for c in sorted(C):
    total += c
    if total > M:
        break
    count += 1

print count
0