結果

問題 No.2424 Josouzai
ユーザー hiryuNhiryuN
提出日時 2023-08-18 21:04:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 144 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 108,460 KB
最終ジャッジ日時 2024-05-06 02:33:34
合計ジャッジ時間 3,861 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,968 KB
testcase_01 AC 32 ms
51,456 KB
testcase_02 AC 36 ms
51,840 KB
testcase_03 AC 36 ms
51,968 KB
testcase_04 AC 61 ms
74,240 KB
testcase_05 AC 126 ms
101,888 KB
testcase_06 AC 115 ms
107,136 KB
testcase_07 AC 123 ms
107,392 KB
testcase_08 AC 121 ms
101,504 KB
testcase_09 AC 35 ms
51,584 KB
testcase_10 AC 48 ms
72,320 KB
testcase_11 AC 72 ms
98,560 KB
testcase_12 AC 63 ms
89,728 KB
testcase_13 AC 56 ms
74,112 KB
testcase_14 AC 78 ms
86,016 KB
testcase_15 AC 42 ms
62,336 KB
testcase_16 AC 104 ms
103,552 KB
testcase_17 AC 55 ms
69,632 KB
testcase_18 AC 58 ms
72,448 KB
testcase_19 AC 73 ms
82,688 KB
testcase_20 AC 105 ms
103,680 KB
testcase_21 AC 88 ms
93,568 KB
testcase_22 AC 59 ms
74,112 KB
testcase_23 AC 65 ms
77,440 KB
testcase_24 AC 48 ms
66,944 KB
testcase_25 AC 115 ms
108,460 KB
testcase_26 AC 89 ms
93,952 KB
testcase_27 AC 114 ms
107,264 KB
testcase_28 AC 97 ms
99,328 KB
testcase_29 AC 92 ms
97,152 KB
testcase_30 AC 50 ms
67,456 KB
testcase_31 AC 68 ms
80,384 KB
testcase_32 AC 114 ms
107,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
A=list(map(int,input().split()))
A.sort()
ans=0
for i in A:
    if i<=m:
        ans+=1 
        m=m-i
print(ans,m)
0