結果

問題 No.2424 Josouzai
ユーザー chineristACchineristAC
提出日時 2023-08-18 21:39:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 279 bytes
コンパイル時間 584 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 106,880 KB
最終ジャッジ日時 2024-11-28 06:10:31
合計ジャッジ時間 4,998 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,224 KB
testcase_01 AC 43 ms
51,584 KB
testcase_02 AC 44 ms
52,480 KB
testcase_03 AC 44 ms
51,584 KB
testcase_04 AC 68 ms
74,240 KB
testcase_05 AC 143 ms
101,248 KB
testcase_06 AC 147 ms
100,608 KB
testcase_07 AC 146 ms
101,376 KB
testcase_08 AC 146 ms
101,856 KB
testcase_09 AC 41 ms
51,584 KB
testcase_10 AC 59 ms
72,064 KB
testcase_11 AC 93 ms
99,072 KB
testcase_12 AC 82 ms
89,344 KB
testcase_13 AC 69 ms
73,856 KB
testcase_14 AC 88 ms
86,844 KB
testcase_15 AC 53 ms
63,104 KB
testcase_16 AC 123 ms
104,576 KB
testcase_17 AC 62 ms
69,888 KB
testcase_18 AC 72 ms
72,192 KB
testcase_19 AC 88 ms
83,712 KB
testcase_20 AC 125 ms
105,088 KB
testcase_21 AC 99 ms
93,824 KB
testcase_22 AC 67 ms
74,112 KB
testcase_23 AC 82 ms
77,952 KB
testcase_24 AC 59 ms
66,944 KB
testcase_25 AC 131 ms
106,880 KB
testcase_26 AC 104 ms
93,952 KB
testcase_27 AC 146 ms
101,504 KB
testcase_28 AC 119 ms
100,000 KB
testcase_29 AC 111 ms
97,792 KB
testcase_30 AC 64 ms
67,712 KB
testcase_31 AC 78 ms
80,384 KB
testcase_32 AC 145 ms
100,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from itertools import permutations
import heapq

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

N,K = mi()
A = li()
A.sort()

cnt = 0
for a in A:
    if K >= a:
        K -= a
        cnt += 1

print(cnt,K)
0