結果

問題 No.2424 Josouzai
ユーザー mattu34mattu34
提出日時 2023-08-18 21:49:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 188 bytes
コンパイル時間 459 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 107,392 KB
最終ジャッジ日時 2024-05-06 03:48:46
合計ジャッジ時間 4,679 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,584 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 42 ms
51,584 KB
testcase_03 AC 42 ms
51,712 KB
testcase_04 AC 73 ms
73,728 KB
testcase_05 AC 147 ms
101,632 KB
testcase_06 AC 136 ms
106,880 KB
testcase_07 AC 137 ms
106,880 KB
testcase_08 AC 143 ms
101,760 KB
testcase_09 AC 42 ms
51,328 KB
testcase_10 AC 60 ms
71,424 KB
testcase_11 AC 88 ms
97,792 KB
testcase_12 AC 77 ms
88,704 KB
testcase_13 AC 71 ms
73,216 KB
testcase_14 AC 93 ms
85,120 KB
testcase_15 AC 52 ms
61,184 KB
testcase_16 AC 123 ms
102,784 KB
testcase_17 AC 64 ms
68,480 KB
testcase_18 AC 68 ms
71,040 KB
testcase_19 AC 85 ms
81,664 KB
testcase_20 AC 122 ms
102,784 KB
testcase_21 AC 104 ms
92,672 KB
testcase_22 AC 71 ms
73,088 KB
testcase_23 AC 78 ms
76,928 KB
testcase_24 AC 60 ms
65,536 KB
testcase_25 AC 129 ms
107,264 KB
testcase_26 AC 104 ms
92,928 KB
testcase_27 AC 134 ms
107,392 KB
testcase_28 AC 116 ms
98,688 KB
testcase_29 AC 109 ms
96,512 KB
testcase_30 AC 60 ms
66,432 KB
testcase_31 AC 83 ms
79,872 KB
testcase_32 AC 136 ms
107,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))
A.sort()
now = K
ans = 0
i = 0
while i < N and now - A[i] >= 0:
    now -= A[i]
    i += 1
    ans += 1
print(ans, now)
0