結果

問題 No.2424 Josouzai
ユーザー vwxyzvwxyz
提出日時 2024-02-12 04:40:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 127 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,640 KB
最終ジャッジ日時 2024-09-28 17:51:45
合計ジャッジ時間 5,489 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 67 ms
17,100 KB
testcase_05 AC 173 ms
32,640 KB
testcase_06 AC 168 ms
32,360 KB
testcase_07 AC 164 ms
32,228 KB
testcase_08 AC 164 ms
32,636 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 53 ms
16,504 KB
testcase_11 AC 96 ms
27,508 KB
testcase_12 AC 85 ms
23,064 KB
testcase_13 AC 67 ms
17,312 KB
testcase_14 AC 102 ms
22,576 KB
testcase_15 AC 38 ms
12,416 KB
testcase_16 AC 153 ms
29,796 KB
testcase_17 AC 54 ms
15,460 KB
testcase_18 AC 61 ms
16,560 KB
testcase_19 AC 91 ms
20,824 KB
testcase_20 AC 155 ms
29,936 KB
testcase_21 AC 115 ms
25,536 KB
testcase_22 AC 65 ms
17,192 KB
testcase_23 AC 75 ms
18,568 KB
testcase_24 AC 48 ms
14,156 KB
testcase_25 AC 155 ms
31,488 KB
testcase_26 AC 114 ms
25,468 KB
testcase_27 AC 159 ms
31,968 KB
testcase_28 AC 138 ms
29,028 KB
testcase_29 AC 125 ms
27,272 KB
testcase_30 AC 49 ms
14,468 KB
testcase_31 AC 86 ms
20,028 KB
testcase_32 AC 156 ms
31,856 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:
		ans+=1
		K-=a
print(ans,K)
0