結果

問題 No.2424 Josouzai
ユーザー superzugansuperzugan
提出日時 2023-09-10 07:36:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 139 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,628 KB
最終ジャッジ日時 2024-06-27 23:08:16
合計ジャッジ時間 5,872 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,496 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 81 ms
17,092 KB
testcase_05 AC 195 ms
32,504 KB
testcase_06 AC 191 ms
32,224 KB
testcase_07 AC 191 ms
32,224 KB
testcase_08 AC 202 ms
32,628 KB
testcase_09 AC 31 ms
10,496 KB
testcase_10 AC 59 ms
16,248 KB
testcase_11 AC 122 ms
27,248 KB
testcase_12 AC 98 ms
23,060 KB
testcase_13 AC 75 ms
17,184 KB
testcase_14 AC 110 ms
22,564 KB
testcase_15 AC 40 ms
12,160 KB
testcase_16 AC 167 ms
29,660 KB
testcase_17 AC 61 ms
15,456 KB
testcase_18 AC 69 ms
16,424 KB
testcase_19 AC 96 ms
20,560 KB
testcase_20 AC 166 ms
30,184 KB
testcase_21 AC 133 ms
25,664 KB
testcase_22 AC 71 ms
17,156 KB
testcase_23 AC 83 ms
18,440 KB
testcase_24 AC 52 ms
14,072 KB
testcase_25 AC 177 ms
31,240 KB
testcase_26 AC 132 ms
25,324 KB
testcase_27 AC 187 ms
31,828 KB
testcase_28 AC 158 ms
28,904 KB
testcase_29 AC 146 ms
27,020 KB
testcase_30 AC 54 ms
14,516 KB
testcase_31 AC 95 ms
20,016 KB
testcase_32 AC 187 ms
31,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
al=sorted(map(int,input().split()))
cnt=0
for i in range(n):
	if k-al[i]>=0:
		k-=al[i]
		cnt+=1
print(cnt,k)
0