結果

問題 No.2424 Josouzai
ユーザー miya145592miya145592
提出日時 2023-08-18 21:51:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 177 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 107,392 KB
最終ジャッジ日時 2024-05-06 03:51:05
合計ジャッジ時間 4,536 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,584 KB
testcase_01 AC 36 ms
51,456 KB
testcase_02 AC 36 ms
51,456 KB
testcase_03 AC 37 ms
51,584 KB
testcase_04 AC 65 ms
73,344 KB
testcase_05 AC 130 ms
101,760 KB
testcase_06 AC 118 ms
107,136 KB
testcase_07 AC 119 ms
107,008 KB
testcase_08 AC 126 ms
101,632 KB
testcase_09 AC 36 ms
51,328 KB
testcase_10 AC 58 ms
71,040 KB
testcase_11 AC 81 ms
97,536 KB
testcase_12 AC 72 ms
88,320 KB
testcase_13 AC 63 ms
73,088 KB
testcase_14 AC 84 ms
85,120 KB
testcase_15 AC 46 ms
61,184 KB
testcase_16 AC 109 ms
102,272 KB
testcase_17 AC 60 ms
69,120 KB
testcase_18 AC 65 ms
71,552 KB
testcase_19 AC 83 ms
81,664 KB
testcase_20 AC 115 ms
102,528 KB
testcase_21 AC 97 ms
93,056 KB
testcase_22 AC 63 ms
72,576 KB
testcase_23 AC 67 ms
77,056 KB
testcase_24 AC 51 ms
66,176 KB
testcase_25 AC 117 ms
107,008 KB
testcase_26 AC 106 ms
92,800 KB
testcase_27 AC 129 ms
107,008 KB
testcase_28 AC 106 ms
98,688 KB
testcase_29 AC 98 ms
96,384 KB
testcase_30 AC 53 ms
66,176 KB
testcase_31 AC 82 ms
79,616 KB
testcase_32 AC 127 ms
107,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))
A.sort()
cnt = 0
for a in A:
    if a<=K:
        K-=a
        cnt+=1
    else:
        break
print(cnt, K)
0