結果

問題 No.2424 Josouzai
ユーザー H20H20
提出日時 2023-08-18 21:01:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 152 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 108,032 KB
最終ジャッジ日時 2024-11-28 04:35:15
合計ジャッジ時間 4,393 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,328 KB
testcase_01 AC 43 ms
51,456 KB
testcase_02 AC 44 ms
51,712 KB
testcase_03 AC 41 ms
51,072 KB
testcase_04 AC 70 ms
73,984 KB
testcase_05 AC 137 ms
101,760 KB
testcase_06 AC 129 ms
106,752 KB
testcase_07 AC 131 ms
106,752 KB
testcase_08 AC 138 ms
101,760 KB
testcase_09 AC 42 ms
51,200 KB
testcase_10 AC 58 ms
71,808 KB
testcase_11 AC 85 ms
98,304 KB
testcase_12 AC 76 ms
89,728 KB
testcase_13 AC 69 ms
73,088 KB
testcase_14 AC 92 ms
86,016 KB
testcase_15 AC 52 ms
61,952 KB
testcase_16 AC 120 ms
102,912 KB
testcase_17 AC 62 ms
69,888 KB
testcase_18 AC 65 ms
71,424 KB
testcase_19 AC 83 ms
82,560 KB
testcase_20 AC 118 ms
103,808 KB
testcase_21 AC 101 ms
92,800 KB
testcase_22 AC 70 ms
73,344 KB
testcase_23 AC 75 ms
77,184 KB
testcase_24 AC 61 ms
66,176 KB
testcase_25 AC 128 ms
108,032 KB
testcase_26 AC 102 ms
93,824 KB
testcase_27 AC 131 ms
107,136 KB
testcase_28 AC 116 ms
99,456 KB
testcase_29 AC 108 ms
97,664 KB
testcase_30 AC 58 ms
67,072 KB
testcase_31 AC 80 ms
80,000 KB
testcase_32 AC 129 ms
106,880 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
print(cnt,K)
0