結果

問題 No.2424 Josouzai
ユーザー tkykwtnbtkykwtnb
提出日時 2024-03-29 06:18:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 166 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,504 KB
最終ジャッジ日時 2024-09-30 14:55:23
合計ジャッジ時間 4,945 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,496 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 28 ms
10,496 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 59 ms
17,220 KB
testcase_05 AC 148 ms
32,476 KB
testcase_06 AC 146 ms
32,220 KB
testcase_07 AC 143 ms
32,224 KB
testcase_08 AC 146 ms
32,504 KB
testcase_09 AC 29 ms
10,496 KB
testcase_10 AC 48 ms
16,244 KB
testcase_11 AC 82 ms
27,372 KB
testcase_12 AC 68 ms
22,932 KB
testcase_13 AC 60 ms
17,184 KB
testcase_14 AC 93 ms
22,312 KB
testcase_15 AC 35 ms
12,416 KB
testcase_16 AC 130 ms
29,660 KB
testcase_17 AC 55 ms
15,328 KB
testcase_18 AC 59 ms
16,424 KB
testcase_19 AC 79 ms
20,528 KB
testcase_20 AC 130 ms
30,252 KB
testcase_21 AC 107 ms
25,544 KB
testcase_22 AC 59 ms
17,148 KB
testcase_23 AC 71 ms
18,568 KB
testcase_24 AC 47 ms
13,944 KB
testcase_25 AC 139 ms
31,360 KB
testcase_26 AC 103 ms
25,324 KB
testcase_27 AC 144 ms
31,832 KB
testcase_28 AC 130 ms
28,776 KB
testcase_29 AC 112 ms
27,016 KB
testcase_30 AC 47 ms
14,384 KB
testcase_31 AC 72 ms
20,020 KB
testcase_32 AC 134 ms
31,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
A=list(map(int,input().split()))
A.sort()
ans=0
for a in A:
    if a<=K:
        ans+=1
        K-=a
    else:
        break
print(ans,K)
0