結果

問題 No.2424 Josouzai
ユーザー pluto77pluto77
提出日時 2023-08-22 10:56:11
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 135 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,628 KB
最終ジャッジ日時 2024-12-16 07:07:15
合計ジャッジ時間 4,798 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 65 ms
17,220 KB
testcase_05 AC 184 ms
32,628 KB
testcase_06 AC 169 ms
32,476 KB
testcase_07 AC 174 ms
32,352 KB
testcase_08 AC 184 ms
32,624 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 54 ms
16,372 KB
testcase_11 AC 104 ms
27,504 KB
testcase_12 AC 85 ms
23,192 KB
testcase_13 AC 70 ms
17,308 KB
testcase_14 AC 102 ms
22,564 KB
testcase_15 AC 40 ms
12,416 KB
testcase_16 AC 157 ms
29,792 KB
testcase_17 AC 57 ms
15,576 KB
testcase_18 AC 64 ms
16,552 KB
testcase_19 AC 91 ms
20,816 KB
testcase_20 AC 155 ms
30,384 KB
testcase_21 AC 119 ms
25,540 KB
testcase_22 AC 66 ms
17,276 KB
testcase_23 AC 74 ms
18,692 KB
testcase_24 AC 47 ms
14,324 KB
testcase_25 AC 168 ms
31,620 KB
testcase_26 AC 123 ms
25,328 KB
testcase_27 AC 163 ms
31,956 KB
testcase_28 AC 140 ms
29,028 KB
testcase_29 AC 129 ms
27,148 KB
testcase_30 AC 49 ms
14,516 KB
testcase_31 AC 92 ms
20,144 KB
testcase_32 AC 166 ms
31,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
a=list(map(int,input().split()))
a.sort()
s=0
for i in range(n):
 if a[i]<=k:
  k-=a[i]
  s+=1
print(s,k)
0