結果

問題 No.2424 Josouzai
ユーザー 👑 rin204rin204
提出日時 2023-09-18 19:12:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 160 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 81,804 KB
実行使用メモリ 108,416 KB
最終ジャッジ日時 2024-07-05 08:58:29
合計ジャッジ時間 5,232 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 38 ms
51,456 KB
testcase_02 AC 38 ms
51,328 KB
testcase_03 AC 39 ms
51,328 KB
testcase_04 AC 74 ms
74,112 KB
testcase_05 AC 141 ms
101,888 KB
testcase_06 AC 130 ms
107,264 KB
testcase_07 AC 129 ms
107,332 KB
testcase_08 AC 135 ms
102,016 KB
testcase_09 AC 37 ms
51,712 KB
testcase_10 AC 54 ms
71,680 KB
testcase_11 AC 85 ms
98,304 KB
testcase_12 AC 72 ms
89,216 KB
testcase_13 AC 69 ms
73,600 KB
testcase_14 AC 90 ms
86,272 KB
testcase_15 AC 47 ms
62,208 KB
testcase_16 AC 119 ms
103,168 KB
testcase_17 AC 58 ms
69,720 KB
testcase_18 AC 65 ms
72,064 KB
testcase_19 AC 82 ms
82,432 KB
testcase_20 AC 119 ms
103,552 KB
testcase_21 AC 97 ms
93,696 KB
testcase_22 AC 67 ms
73,728 KB
testcase_23 AC 75 ms
77,696 KB
testcase_24 AC 56 ms
66,688 KB
testcase_25 AC 128 ms
108,416 KB
testcase_26 AC 98 ms
93,528 KB
testcase_27 AC 129 ms
107,392 KB
testcase_28 AC 112 ms
99,200 KB
testcase_29 AC 105 ms
97,152 KB
testcase_30 AC 56 ms
66,944 KB
testcase_31 AC 77 ms
80,128 KB
testcase_32 AC 127 ms
107,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
A = list(map(int, input().split()))
A.sort()
ans = 0
for a in A:
    if k >= a:
        k -= a
        ans += 1

print(ans, k)
0