結果

問題 No.2424 Josouzai
ユーザー ikomaikoma
提出日時 2023-08-18 23:35:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 144 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 108,288 KB
最終ジャッジ日時 2024-11-28 11:05:57
合計ジャッジ時間 4,663 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,456 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 36 ms
51,456 KB
testcase_04 AC 66 ms
74,112 KB
testcase_05 AC 129 ms
101,888 KB
testcase_06 AC 131 ms
107,008 KB
testcase_07 AC 128 ms
107,136 KB
testcase_08 AC 139 ms
101,760 KB
testcase_09 AC 40 ms
52,096 KB
testcase_10 AC 57 ms
71,680 KB
testcase_11 AC 83 ms
98,432 KB
testcase_12 AC 74 ms
89,088 KB
testcase_13 AC 67 ms
73,856 KB
testcase_14 AC 89 ms
86,272 KB
testcase_15 AC 47 ms
62,720 KB
testcase_16 AC 115 ms
103,680 KB
testcase_17 AC 62 ms
69,632 KB
testcase_18 AC 67 ms
72,320 KB
testcase_19 AC 80 ms
83,200 KB
testcase_20 AC 114 ms
103,808 KB
testcase_21 AC 98 ms
93,568 KB
testcase_22 AC 67 ms
73,728 KB
testcase_23 AC 71 ms
77,568 KB
testcase_24 AC 55 ms
66,560 KB
testcase_25 AC 120 ms
108,288 KB
testcase_26 AC 93 ms
93,568 KB
testcase_27 AC 122 ms
107,392 KB
testcase_28 AC 111 ms
99,328 KB
testcase_29 AC 103 ms
97,664 KB
testcase_30 AC 56 ms
67,072 KB
testcase_31 AC 77 ms
80,384 KB
testcase_32 AC 127 ms
107,008 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:
        K-=a
        ans+=1
print(ans, K)
0