結果

問題 No.2424 Josouzai
ユーザー pluto77pluto77
提出日時 2023-08-22 10:56:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 135 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,756 KB
最終ジャッジ日時 2024-05-09 16:36:47
合計ジャッジ時間 4,760 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 70 ms
17,220 KB
testcase_05 AC 170 ms
32,756 KB
testcase_06 AC 171 ms
32,220 KB
testcase_07 AC 168 ms
32,324 KB
testcase_08 AC 168 ms
32,504 KB
testcase_09 AC 27 ms
10,496 KB
testcase_10 AC 54 ms
16,240 KB
testcase_11 AC 107 ms
27,508 KB
testcase_12 AC 86 ms
23,056 KB
testcase_13 AC 66 ms
17,304 KB
testcase_14 AC 103 ms
22,436 KB
testcase_15 AC 37 ms
12,416 KB
testcase_16 AC 150 ms
29,660 KB
testcase_17 AC 57 ms
15,456 KB
testcase_18 AC 60 ms
16,428 KB
testcase_19 AC 86 ms
20,816 KB
testcase_20 AC 152 ms
30,252 KB
testcase_21 AC 116 ms
25,668 KB
testcase_22 AC 65 ms
17,156 KB
testcase_23 AC 77 ms
18,688 KB
testcase_24 AC 49 ms
14,196 KB
testcase_25 AC 160 ms
31,384 KB
testcase_26 AC 122 ms
25,456 KB
testcase_27 AC 165 ms
31,828 KB
testcase_28 AC 144 ms
29,032 KB
testcase_29 AC 127 ms
27,024 KB
testcase_30 AC 49 ms
14,512 KB
testcase_31 AC 84 ms
20,036 KB
testcase_32 AC 165 ms
31,780 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