結果

問題 No.2424 Josouzai
ユーザー QroQro
提出日時 2023-08-18 21:06:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 167 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 108,160 KB
最終ジャッジ日時 2024-11-28 04:47:15
合計ジャッジ時間 4,284 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,456 KB
testcase_01 AC 43 ms
51,712 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 36 ms
51,712 KB
testcase_04 AC 70 ms
74,368 KB
testcase_05 AC 140 ms
101,888 KB
testcase_06 AC 130 ms
107,008 KB
testcase_07 AC 134 ms
107,136 KB
testcase_08 AC 132 ms
102,016 KB
testcase_09 AC 35 ms
51,712 KB
testcase_10 AC 54 ms
72,320 KB
testcase_11 AC 77 ms
98,560 KB
testcase_12 AC 69 ms
89,600 KB
testcase_13 AC 64 ms
74,112 KB
testcase_14 AC 83 ms
86,016 KB
testcase_15 AC 49 ms
62,720 KB
testcase_16 AC 111 ms
103,552 KB
testcase_17 AC 58 ms
70,016 KB
testcase_18 AC 63 ms
72,704 KB
testcase_19 AC 77 ms
82,688 KB
testcase_20 AC 111 ms
103,936 KB
testcase_21 AC 94 ms
93,696 KB
testcase_22 AC 65 ms
73,600 KB
testcase_23 AC 68 ms
77,568 KB
testcase_24 AC 53 ms
67,072 KB
testcase_25 AC 120 ms
108,160 KB
testcase_26 AC 94 ms
93,824 KB
testcase_27 AC 122 ms
107,264 KB
testcase_28 AC 103 ms
99,712 KB
testcase_29 AC 99 ms
97,536 KB
testcase_30 AC 52 ms
66,944 KB
testcase_31 AC 73 ms
80,256 KB
testcase_32 AC 119 ms
107,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
A=list(map(int,input().split()))
A.sort()
count=0
for i in range(N):
    if K-A[i] >= 0:
        K-=A[i]
        count+=1

print(count,K)
0