結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,456 KB
testcase_01 AC 38 ms
51,072 KB
testcase_02 AC 37 ms
51,328 KB
testcase_03 AC 37 ms
51,456 KB
testcase_04 AC 69 ms
73,088 KB
testcase_05 AC 128 ms
101,760 KB
testcase_06 AC 123 ms
106,624 KB
testcase_07 AC 127 ms
107,136 KB
testcase_08 AC 130 ms
101,504 KB
testcase_09 AC 36 ms
51,712 KB
testcase_10 AC 54 ms
70,912 KB
testcase_11 AC 80 ms
97,664 KB
testcase_12 AC 75 ms
88,320 KB
testcase_13 AC 65 ms
73,216 KB
testcase_14 AC 86 ms
84,864 KB
testcase_15 AC 46 ms
61,568 KB
testcase_16 AC 111 ms
102,272 KB
testcase_17 AC 59 ms
68,992 KB
testcase_18 AC 62 ms
71,424 KB
testcase_19 AC 79 ms
82,048 KB
testcase_20 AC 114 ms
102,528 KB
testcase_21 AC 95 ms
92,032 KB
testcase_22 AC 64 ms
72,960 KB
testcase_23 AC 71 ms
76,416 KB
testcase_24 AC 53 ms
65,536 KB
testcase_25 AC 121 ms
106,752 KB
testcase_26 AC 96 ms
92,800 KB
testcase_27 AC 127 ms
107,136 KB
testcase_28 AC 116 ms
98,304 KB
testcase_29 AC 110 ms
96,896 KB
testcase_30 AC 57 ms
65,536 KB
testcase_31 AC 75 ms
79,616 KB
testcase_32 AC 122 ms
107,264 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