結果

問題 No.2424 Josouzai
ユーザー もぐら 3.0もぐら 3.0
提出日時 2023-11-12 23:30:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 182 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 108,672 KB
最終ジャッジ日時 2024-09-26 03:06:31
合計ジャッジ時間 4,510 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
51,712 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 AC 73 ms
74,240 KB
testcase_05 AC 145 ms
101,760 KB
testcase_06 AC 136 ms
107,008 KB
testcase_07 AC 138 ms
107,264 KB
testcase_08 AC 144 ms
101,760 KB
testcase_09 AC 41 ms
51,456 KB
testcase_10 AC 60 ms
71,808 KB
testcase_11 AC 88 ms
98,816 KB
testcase_12 AC 79 ms
89,600 KB
testcase_13 AC 73 ms
73,984 KB
testcase_14 AC 94 ms
86,272 KB
testcase_15 AC 53 ms
62,080 KB
testcase_16 AC 124 ms
103,808 KB
testcase_17 AC 65 ms
69,760 KB
testcase_18 AC 69 ms
72,448 KB
testcase_19 AC 87 ms
82,560 KB
testcase_20 AC 126 ms
103,680 KB
testcase_21 AC 107 ms
93,696 KB
testcase_22 AC 73 ms
73,600 KB
testcase_23 AC 78 ms
78,080 KB
testcase_24 AC 60 ms
67,072 KB
testcase_25 AC 133 ms
108,672 KB
testcase_26 AC 107 ms
94,080 KB
testcase_27 AC 135 ms
107,136 KB
testcase_28 AC 118 ms
99,456 KB
testcase_29 AC 113 ms
97,792 KB
testcase_30 AC 63 ms
67,456 KB
testcase_31 AC 85 ms
80,512 KB
testcase_32 AC 136 ms
107,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
A = list(map(int,input().split()))
A.sort()

ans=0
remain = K
for n in A:
    if remain>=n:
        remain-=n
        ans+=1
        
print(ans,remain)
0